[Fixed]-Print form validation errors in Django

1👍

Try to add {{ form.non_field_errors }} to the form:

<form method="post" action="?next={{ next|default:"/" }}" class="form-horizontal">
{% csrf_token %}
{{ form.non_field_errors }}
...

Leave a comment