{{input name="label" value=field.label}}
{{i18n 'admin.wizard.field.required_label'}} {{input type='checkbox' checked=field.required}}
{{textarea name="description" value=field.description}}
{{image-uploader imageUrl=field.image onUploadDone=(action "imageUploadDone") onUploadDeleted=(action "imageUploadDeleted") type="wizard-step" class="no-repeat contain-image"}}
{{combo-box value=field.type content=fieldTypes onChange=(action (mut field.type)) options=(hash none="admin.wizard.field.type" )}}
{{#if showMinLength}}
{{input type="number" name="min_length" value=field.min_length class="small"}}
{{/if}} {{#if isUpload}}
{{input value=field.file_types class="medium"}}
{{/if}} {{#if showLimit}}
{{input type="number" value=field.limit class="small"}}
{{/if}} {{wizard-advanced-toggle showAdvanced=field.showAdvanced}} {{#if field.showAdvanced}}
{{#if isCategory}}
{{combo-box value=field.property content=categoryPropertyTypes onChange=(action (mut field.property)) options=(hash none='admin.wizard.selector.placeholder.property' )}}
{{/if}} {{#if showPrefill}}
{{wizard-mapper inputs=field.prefill options=prefillOptions}}
{{/if}} {{#if showContent}}
{{wizard-mapper inputs=field.content options=contentOptions}}
{{/if}}
{{input name="key" value=field.key class="medium" placeholderKey="admin.wizard.translation_placeholder"}}
{{/if}}