1👍
✅
I had the same problem this weekend. Try in your save function
def save:
#your other code
spam_field = self.cleaned_data['spam_field']
new_spam_user = SpamProfile.objects.create_user(spam_field)
return new_user
Source:stackexchange.com