{%- set id = (id is defined ? id : null) %} {%- set label = (label is defined ? label: null) %} {%- set instructions = (instructions is defined ? instructions : null) %} {%- set errors = (errors is defined ? errors : null) -%}
{% if label or instructions %}
{% if label %} {{ label|raw }} {% endif %} {% if instructions %}
{{ instructions|md }}
{% endif %}
{% endif %}
{{ input|raw }}
{% include "_includes/forms/errorList" with { errors: errors } %}