{% if field.field_type != 'newsection' %}
{% if 'nolabel' not in field.options %}
{% if field.instructions and field.field_type != 'newsection' %}
{% svg_icon "info-circle" size="sm" %}
{% endif %}
{% svg_icon "info-circle" %}
{{ field.label }}
{{ field.instructions|markdown }}
{% endif %}
{% endif %}
{% if field.is_repeatable %}
{% render_field field repeatable=True %}
{% else %}
{% render_field field %}
{% endif %}