{% extends 'base.html.twig' %} {% block title %}Checkout - KitsCo{% endblock %} {% block body %} {% include 'shop/_navbar.html.twig' %}

Checkout

{% for label, messages in app.flashes %} {% for message in messages %}
{{ message }}
{% endfor %} {% endfor %}

Billing Information

Company/Name

{{ customer.name }}

{% if customer.contactPerson %}

Contact Person

{{ customer.contactPerson }}

{% endif %} {% if customer.contactEmail %}

Email

{{ customer.contactEmail }}

{% endif %} {% if customer.phone %}

Phone

{{ customer.phone }}

{% endif %} {% if customer.formattedAddress %}

Address

{{ customer.formattedAddress }}

{% endif %}

Order Items

{% for item in cart.items %}
{% if item.product.imagePath %} {{ item.product.name }} {% else %} {% endif %}

{{ item.product.name }}

{{ item.formattedUnitPrice }} x {{ item.quantity }}

{{ item.formattedLineTotal }}

{% endfor %}

How it works

After placing your order, you'll receive a Proforma Invoice for review. Our team will confirm product availability and finalize pricing including shipping costs. Payment instructions will be provided once the order is confirmed.

By placing your order, you agree to receive a proforma invoice for this order.

{% include 'checkout/_order_summary.html.twig' %}
{% endblock %}