{% load i18n %} {% for hidden_field in account_information_form.hidden_fields %} {{ hidden_field }} {% endfor %} {% if account_information_form.non_field_errors %} {% endif %}
{{ account_information_form.first_name.label_tag }} {{ account_information_form.first_name }} {% if account_information_form.first_name.errors %} {% for error in account_information_form.first_name.errors %}
{{ error }}
{% endfor %} {% endif %}
{{ account_information_form.last_name.label_tag }} {{ account_information_form.last_name }} {% if account_information_form.last_name.errors %} {% for error in account_information_form.last_name.errors %}
{{ error }}
{% endfor %} {% endif %}
{{ account_information_form.email.label_tag }} {{ account_information_form.email }} {% if account_information_form.email.errors %} {% for error in account_information_form.email.errors %}
{{ error }}
{% endfor %} {% endif %}
{{ account_information_form.country.label_tag }} {{ account_information_form.country }} {% if account_information_form.country.errors %} {% for error in account_information_form.country.errors %}
{{ error }}
{% endfor %} {% endif %} {% if account_information_form.country.help_text %} {{ account_information_form.country.help_text }} {% endif %}
{% comment %}
{{ account_information_form.name.label_tag }} {{ account_information_form.name }} {% if account_information_form.name.errors %} {% for error in account_information_form.name.errors %}
{{ error }}
{% endfor %} {% endif %} {% if account_information_form.name.help_text %} {{ account_information_form.name.help_text }} {% endif %}
{% endcomment %}
{{ account_information_form.company.label_tag }} {{ account_information_form.company }} {% if account_information_form.company.errors %} {% for error in account_information_form.company.errors %}
{{ error }}
{% endfor %} {% endif %} {% if account_information_form.company.help_text %} {{ account_information_form.company.help_text }} {% endif %}
{{ account_information_form.address_1.label_tag }} {{ account_information_form.address_1 }} {% if account_information_form.address_1.errors %} {% for error in account_information_form.address_1.errors %}
{{ error }}
{% endfor %} {% endif %} {% if account_information_form.address_1.help_text %} {{ account_information_form.address_1.help_text }} {% endif %}
{{ account_information_form.address_2.label_tag }} {{ account_information_form.address_2 }} {% if account_information_form.address_2.errors %} {% for error in account_information_form.address_2.errors %}
{{ error }}
{% endfor %} {% endif %} {% if account_information_form.address_2.help_text %} {{ account_information_form.address_2.help_text }} {% endif %}
{{ account_information_form.locality.label_tag }} {{ account_information_form.locality }} {% if account_information_form.locality.errors %} {% for error in account_information_form.locality.errors %}
{{ error }}
{% endfor %} {% endif %} {% if account_information_form.locality.help_text %} {{ account_information_form.locality.help_text }} {% endif %}
{{ account_information_form.state.label_tag }} {{ account_information_form.state }} {% if account_information_form.state.errors %} {% for error in account_information_form.state.errors %}
{{ error }}
{% endfor %} {% endif %} {% if account_information_form.state.help_text %} {{ account_information_form.state.help_text }} {% endif %}
{{ account_information_form.postal_code.label_tag }} {{ account_information_form.postal_code }} {% if account_information_form.postal_code.errors %} {% for error in account_information_form.postal_code.errors %}
{{ error }}
{% endfor %} {% endif %} {% if account_information_form.postal_code.help_text %} {{ account_information_form.postal_code.help_text }} {% endif %}