Skip to content

Instantly share code, notes, and snippets.

@davidhellmann
Created August 28, 2019 11:17
Show Gist options
  • Save davidhellmann/ba9fd66a1a5ba090fc46e517230d4b71 to your computer and use it in GitHub Desktop.
Save davidhellmann/ba9fd66a1a5ba090fc46e517230d4b71 to your computer and use it in GitHub Desktop.
{% include '_forms/input/_template.twig' with {
opt: {
type: 'text',
name: field.handle,
label: field.label,
value: field.value,
maxlength: field.maxLength,
required: field.required,
id: 'input' ~ field.id,
placeholder: field.placeholder,
info: field.instructions,
errors: field.errors,
rulesHtmlData: field.rulesHtmlData,
inputAttributes: field.inputAttributes,
labelAttributes: field.labelAttributes,
errorAttributes: field.errorAttributes,
instructionAttributes: field.instructionAttributes,
}
} only %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment