{% from "_includes/forms" import textField %} {{ textField({ label: "File System Path"|t, instructions: "The path to your folder on the file system."|t, id: 'path', class: 'ltr', name: 'path', value: settings.path, errors: settings.getErrors('path'), required: true, placeholder: "/path/to/folder/"|t }) }} {{ textField({ label: "URL"|t, instructions: "The URL to your folder."|t, id: 'url', class: 'ltr', name: 'url', value: settings.url, errors: settings.getErrors('url'), required: true, placeholder: "http://example.com/path/to/folder/"|t }) }}