[Answer]-Django raise forms.ValiadationError not displaying

1👍

The error is here. You are passing form class:

stuff = {'form': LoginForm}

You should pass the form instance which you tried to validate:

stuff = {'form': form}

Leave a comment