{% extends 'base.html' %} {% load static %} {% load static_v %} {% block title %}{{ t.title_signup }} — PickkerMarket{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
{% csrf_token %}

{{ t.signup_title }}

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

{{ t.signup_account_details_heading }}

{{ form.email }} {% if form.email.errors %}
{{ form.email.errors }}
{% endif %}
{{ form.first_name }}
{{ form.last_name }}
{{ form.phone_number }} {{ form.preferred_language }}

{{ t.signup_password_heading }}

{{ form.password1 }} {{ form.password2 }} {% if form.password2.errors %}
{{ form.password2.errors }}
{% endif %}

{{ t.signup_account_type }}

{{ form.business_name }} {% if form.business_name.errors %}
{{ form.business_name.errors }}
{% endif %}
{{ form.tin_number }} {% if form.tin_number.errors %}
{{ form.tin_number.errors }}
{% endif %}
{{ form.business_license_number }} {% if form.business_license_number.errors %}
{{ form.business_license_number.errors }}
{% endif %}

{{ t.signup_address_heading }}

{{ form.address }}
{{ form.city }}
{{ form.area }}

{{ t.signup_vehicle_market_heading }}

{% if form.truck_type_id.errors %}
{{ form.truck_type_id.errors }}
{% endif %} {{ form.license_plate }}

{{ t.signup_market_location_help }}

{% if form.market_location.errors %}
{{ form.market_location.errors }}
{% endif %}
{{ form.market_location }} {{ form.location_lat }} {{ form.location_lng }} {{ form.license_number }}
{{ form.agree_to_policies }}
{% if form.agree_to_policies.errors %}
{{ form.agree_to_policies.errors }}
{% endif %}

{{ t.signup_has_account }} {{ t.signup_login_link }}

{% endblock %} {% block extra_scripts %} {% endblock %}