{% case input.type %}
{% when 'Dropdown' %}
{% assign ariaLabel = input.label | default: 'Input' %}
{% when 'Input' %}
{% when 'Textarea' %}
{% when 'Icons' %}
{% when 'Icons (Radio)' %}
{% when 'List' %}
{% when 'Money' %}
{% when 'Image' %}
{% endcase %}
{% if input.info_text %}
info
{{ input.info_text }}
{% endif %}
{% if input.state == 'error' and input.message != blank %}
{{ input.message }} {{ input.validity_message }}
{% endif %}
{% endfor %}