I have django custom user model MyUser with one extra field:
MyUser
# models.py from django.contrib.auth.models import AbstractUser class MyUser(Abstr
i think you should define fields property in class Meta in SignupForm and set list of fields that contains age, like this :
class SignupForm(forms.Form): ... class Meta: model = MyUser fields = ['first_name', 'last_name', 'age']
and if it's not worked, look at this