{% extends 'checkout/layout.html.twig' %} {% set checkout_step = 'select_shipping' %} {% block checkout_content %} {{ form_start(form, {'attr': {'novalidate': 'novalidate'}}) }} {{ form_row(form._token) }}
{% if form.shippingMethod|length %}

Shipping Method

{% for key, child in form.shippingMethod %} {% set method = form.shippingMethod.vars.choices[key].data %} {% set amount = form.shippingMethod.vars.shipping_costs[child.vars.value] %} {% endfor %}
{% else %}

Warning

There are currently no shipping methods available for your shipping address.

{% endif %}
←  Back
{{ form_end(form, {'render_rest': false}) }} {% endblock %}