How to Solve NameError: name 'NON_FIELD_ERRORS' is not defined -- django

Erorr: name 'NON_FIELD_ERRORS' is not defined

NameError: name 'NON_FIELD_ERRORS' is not defined

Solution: Import the 'NON_FIELD_ERRORS' module

# Add the following line to the top of your code
from django.core.validators import NON_FIELD_ERRORS

 

For more information:
django NON_FIELD_ERRORS