{% load i18n %}
{% blocktrans count errors_count as counter %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %}
{% if non_field_errors %}
    {% for error in non_field_errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}