<div class="{{ wrapper_class }}{% if has_error %} {{ error_class }}{% endif %}">
{%- if label_position == "before" %}
{{ label_html }}
{%- endif %}
{{ field_html }}
{%- if label_position == "after" %}
{{ label_html }}
{%- endif %}
{%- if errors %}
{{ errors_html }}
{%- endif %}
{%- if help_text %}
<span class="{{ help_class }}">{{ help_text }}</span>
{%- endif %}
</div>