{# form_field.html #} {% comment %} Usage: {% include 'components/form_field.html' with field=form.field_name %} Features: - Automatic label generation - Required field indication - Help text display with info icon - Error message handling with warning icon - Consistent ICTAZ brand styling {% endcomment %}
{{ field }} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {% if field.errors %}
{{ field.errors|join:', ' }}
{% endif %}