{% if label_display in ['before', 'invisible'] %}
{{ label }}
{% endif %}
{% if prefix is not empty %}
{{ prefix }}
{% endif %}
{% if description_display == 'before' and description.content %}
{{ description.content }}
{% endif %}
{{ children }}
{% if suffix is not empty %}
{{ suffix }}
{% endif %}
{% if label_display == 'after' %}
{{ label }}
{% endif %}
{% if errors %}
{{ errors }}
{% endif %}
{% if description_display in ['after', 'invisible'] and description.content %}
{{ description.content }}
{% endif %}