2👍
✅
You’re returning your form to your template as {"application_form": form}
.
You’re template doesn’t know anything about any variables called form
.
Instead of using:
{{ form.first_name.errors }}
Try using the following for each of your error messages:
{{ application_form.first_name.errors }}
Source:stackexchange.com