Setting Module
The setting module has the basic input fields available for you. These fields are available both for translatable fields as plain fields.
input type text
text
input checkbox
checkbox
textarea
textarea
input radio
radio
The Radio field needs an additional options
key with the wanted options. For instance:
'this-is-a-radio' => [
'description' => 'This is a radio',
'options' => [
'option1' => 'Option 1',
'option2' => 'Option 2',
'option3' => 'Option 3',
],
'view' => 'radio'
],
input number
number