{% 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 %} Your cart is empty Add some products before checking out. Browse Products Your Details {{ form_start(form, { 'action': path('guest_checkout_complete'), 'attr': { 'data-action': 'submit->guest-checkout#submitForm' } }) }} Full Name * {{ form_widget(form.name) }} {{ form_errors(form.name) }} Email Address * {{ form_widget(form.email) }} {{ form_errors(form.email) }} Phone Number (optional) {{ form_widget(form.phone) }} {{ form_errors(form.phone) }} City (optional) {{ form_widget(form.city) }} {{ form_errors(form.city) }} Address (optional) {{ form_widget(form.address) }} {{ form_errors(form.address) }} Country (optional) {{ form_widget(form.country) }} {{ form_errors(form.country) }} * Required fields {{ form_widget(form.cart_data, {'attr': {'data-guest-checkout-target': 'cartData'}}) }} {{ form_rest(form) }} Place Order {{ form_end(form) }} Already have an account? Login to use your saved information Order Summary Loading... Items (0) Shs0 Shipping Calculated later Total Shs0 Back to Cart Secure checkout - Your data is protected {% endblock %}
Add some products before checking out.
* Required fields
Already have an account? Login to use your saved information
Loading...
Secure checkout - Your data is protected