Hi,
I'm not sure about what you are expecting from your template "home.html"
This instance seems to be defined from the default user model (cf "from django.contrib.auth.models import User")
in that case your custom fields "Business_name" and "mobile" are not defined in the default user model
```
>home.html
{% block content %}
<p>
{{ user.Business_name }}
{{ user.first_name}}
{{ user.last_name}}
{{ user.email }}
{{user.username}}
{{ user.mobile }}
</p>
{% end block %}
```
Also in your stackoverflow message you show this UserCreationForm
PS: keep your field name "Business_name" in it's lower case form 'buisness_name' as it's a variable and not a class
Hope this gave you some help
Cheers