{% extends 'base/layout.html' %} {% block content %}

Become a Seller

{% csrf_token %} {% if user_form %}

Account Details

{% if user_form.non_field_errors %}
{{ user_form.non_field_errors }}
{% endif %} {% for field in user_form %}
{{ field }} {% if field.errors %}

{{ field.errors.0 }}

{% endif %}
{% endfor %}

Store Details

{% endif %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{{ form.store_name }} {% if form.store_name.errors %}

{{ form.store_name.errors.0 }}

{% endif %}
{{ form.description }} {% if form.description.errors %}

{{ form.description.errors.0 }}

{% endif %}
{{ form.contact_email }} {% if form.contact_email.errors %}

{{ form.contact_email.errors.0 }}

{% endif %}
{{ form.contact_phone }} {% if form.contact_phone.errors %}

{{ form.contact_phone.errors.0 }}

{% endif %}

Store Address

{{ form.street }} {% if form.street.errors %}

{{ form.street.errors.0 }}

{% endif %}
{{ form.city }} {% if form.city.errors %}

{{ form.city.errors.0 }}

{% endif %}
{{ form.state }} {% if form.state.errors %}

{{ form.state.errors.0 }}

{% endif %}
{{ form.zip_code }} {% if form.zip_code.errors %}

{{ form.zip_code.errors.0 }}

{% endif %}
{% endblock %}