{% import "_includes/forms" as forms %} {{ forms.textField({ label: "Placeholder Text"|t, instructions: "The text that will be shown if the field doesn’t have a value."|t, id: 'placeholder', name: 'placeholder', value: settings.placeholder, translatable: true, errors: settings.getErrors('placeholder') }) }} {{ forms.textField({ label: "Max Length"|t, instructions: "The maximum length of characters the field is allowed to have."|t, id: 'maxLength', name: 'maxLength', value: settings.maxLength, size: 3, errors: settings.getErrors('maxLength') }) }} {{ forms.checkboxField({ label: "Allow line breaks"|t, name: 'multiline', checked: settings.multiline, toggle: 'initialRowsContainer' }) }}