{%- set id = (id is defined ? id : null) %} {%- set label = (label is defined and label != '__blank__' ? label : null) %} {%- set locale = ((craft.isLocalized() and locale is defined) ? locale : null) %} {%- set instructions = (instructions is defined ? instructions : null) %} {%- set warning = (warning is defined ? warning : null) %} {%- set errors = (errors is defined ? errors : null) -%}
{% if label or instructions %}
{% if label %} {{- label|raw -}} {% if locale %} {{ locale }} {% endif %} {% endif %} {% if instructions %}
{{ instructions|md }}
{% endif %}
{% endif %}
{{ input|raw }}
{% if warning %}

{{ warning }}

{% endif %} {% include "_includes/forms/errorList" with { errors: errors } %}