I've got this in my form theme:
{% block form_errors %}
{% spaceless %}
{% if errors|length > 0 %}
<ul>
{% for error in errors %}
<li>{{ error.message }}</li>
{% endfor %}
</ul>
{% endif %}
{% endspaceless %}
{% endblock form_errors %}
and when I call it like this:
form_errors(form)
It displays only 'global' errors for the form. How can I get in it all the form errors, even for specific fields in this one section?