How to disable CheckBox (New-UDInputField Type)

Hello everyone,
I just try to get something like this:
imagen

I change my code paramethers to get the same:

   New-UDInput -SubmitText "Send" -Title "Backupl" -Id "FormBK1" -Content {
                            New-UDInputField -Type 'textbox' -Name 'Databases2' -Placeholder 'DBs' 
                            New-UDInputField -Type 'textbox' -Name 'SQL_Source2' -Placeholder 'SQL Origin' -DefaultValue 'SQL-XX'
                            New-UDInputField -Type 'textbox' -Name 'SQL_Dest2' -Placeholder 'SQL Dest' -DefaultValue 'SQL-YY'
                            New-UDInputField -Type 'textbox' -Name 'EmailBK2' -Placeholder 'email -DefaultValue 'mail@domain.com'
                            New-UDInputField -Type 'checkbox' -Name 'edit' -Placeholder 'check to edit' -DefaultValue $True -Disabled:$True #-Checked $True  -FilledIn $True
} -Endpoint ...............

As you can see, in the last line:
New-UDInputField -Type ‘checkbox’ -Name ‘edit’ -Placeholder ‘check to edit’ -DefaultValue $True -Disabled:$True #-Checked $True -FilledIn $True
No one of these paramathers works (this is an example of the output):

Thanks!!