{% import "@SyliusShop/Common/Macro/money.html.twig" as money %} {% import "@SyliusShop/Common/Macro/icons.html.twig" as icons %}
{{ 'sylius.ui.payment'|trans }}
{% for payment in order.payments %} {% set state = payment.state %}
{{ icons.creditCard('fs-2 text-gray-500') }}
{{ payment.method }}
{{ money.format(payment.amount, payment.currencyCode) }}
{% if state != 'cart' %}

{% include "@SyliusShop/Common/Order/Label/PaymentState/singlePaymentState.html.twig" with {state} %}

{% endif %}
{% endfor %}