{% load wagtailadmin_tags %}
{{ field.label_tag }}
{% block form_field %} {{ field }} {% endblock %} {# This span only used on rare occasions by certain types of input #}
{% if field.help_text %}

{{ field.help_text }}

{% endif %} {% if field.errors %}

{% for error in field.errors %} {{ error|escape }} {% endfor %}

{% endif %}