[Answered ]-How to pull data into the form when user wants to update his info? django

2👍

You forgot the instance parameter in your second UpdateProfileForm() call. It should be:

else:
    update_profile_form = UpdateProfileFrom(instance=request.user)

Leave a comment