Hello Idowu. You were supposed to include your stack trace so that there can be a proper diagnosis of the problem. Now we can only guess.
I guess you are submitting your form with the `description` field empty because your defined it with `blank=True` in your models.py. If you want to be able to save the model with the description field empty, you need to add `null=True` to the description field's arguments. On 27 Mar 2017 18:49, "Idowu Julius" <[email protected]> wrote: Hello everyone i would be glad if anybody can solve this problem with me. I am trying to signup users from AbstractUser model but after preparing the signup page i keep getting error of this field is required and i have checked error this is the model file https://ghostbin.com/paste/bk7y3 and the form.py file https://ghostbin.com/paste/c3ajm and the views file https://ghostbin.com/paste/yfuwq thank you in anticipation of your correct response -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/ msgid/django-users/c4508b3d-0b56-4df6-9df3-19a004ab61f4%40googlegroups.com <https://groups.google.com/d/msgid/django-users/c4508b3d-0b56-4df6-9df3-19a004ab61f4%40googlegroups.com?utm_medium=email&utm_source=footer> . For more options, visit https://groups.google.com/d/optout. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CA%2BWjgXMiZCG3VDwP2N9S9yT%2Bm9WwcHar3Sz3gUKO-E0q1%2BG71A%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.

