{% load placeholder %}
Delivery & Billing
{% csrf_token %} {% if form_address.errors %} {% for field in form %} {% for error in field.errors %}
{{ error|escape }}
{% endfor %} {% endfor %} {% for error in form.non_field_errors %}
{{ error|escape }}
{% endfor %} {% endif %}

Delivery and billing address

{{ form_address.delivery_company | placeholder:'Company (optional)' }}
{{ form_address.delivery_name | placeholder:'Name' }}
{{ form_address.delivery_street | placeholder:'Street' }}
{{ form_address.delivery_zip | placeholder:'ZIP' }}
{{ form_address.delivery_city | placeholder:'City' }}
{{ form_address.delivery_country }}

{{ form_address.bill_company | placeholder:'Company (optional)' }}
{{ form_address.bill_name | placeholder:'Name' }}
{{ form_address.bill_street | placeholder:'Street' }}
{{ form_address.bill_zip | placeholder:'ZIP' }}
{{ form_address.bill_city | placeholder:'City' }}
{{ form_address.bill_country }}