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

Order Placed Successfully!

Thank you for your order. We've created a proforma invoice for your review.

Invoice Number

#{{ invoice.displayInvoiceNumber }}

Order Date

{{ invoice.invoiceDate|date('M d, Y') }}

Status

{{ invoice.status.label }}

Total Amount

{{ invoice.formattedTotal }}

What happens next?

  • 1. Our team will review your order and confirm availability
  • 2. We'll finalize shipping costs and send you the updated invoice
  • 3. You'll receive payment instructions via email
  • 4. Once payment is confirmed, we'll ship your order
Continue Shopping {% if accessToken is defined and accessToken %} View Order Status {% endif %} Back to Home

Order Details

{% for item in invoice.items %}

{{ item.description }}

{{ item.quantity }} x {{ invoice.currency.symbol }}{{ item.unitPrice|money }}

{{ invoice.currency.symbol }}{{ item.amount|money }}

{% endfor %}
Total {{ invoice.formattedTotal }}
{% if isGuest is defined and isGuest %} {% endif %} {% endblock %}