{{i18n 'admin.wizard.field.label'}}
{{input name="label" value=field.label}}
{{i18n 'admin.wizard.field.description'}}
{{textarea name="description" value=field.description}}
{{i18n 'admin.wizard.field.type'}}
{{combo-box value=field.type content=types}}
{{i18n 'admin.wizard.field.required'}}
{{input type='checkbox' checked=field.required}}
{{i18n 'admin.wizard.field.required_label'}}
{{#if isDropdown}}
{{#each dropdownChoices as |c|}}
{{input type='text' value=c.label}}
{{d-button action='removeChoice' actionParam=c icon='times'}}
{{/each}}
{{d-button action='addChoice' label='admin.wizard.add' icon='plus'}}
{{/if}}