ebs/templates/components/product/_address_form.html.twig
2023-12-21 08:49:38 +01:00

11 lines
391 B
Twig

{% if app.user.address is not null %}
{% include 'components/layout/_title_5.html.twig' with {
rowClass: 'border-top',
title: 'product.form.recover'|trans,
colClass: 'col-md-8 col-lg-6 col-xl-5 mt-4'
} %}
{% include 'components/product/_address.html.twig' with {
address: app.user.address,
schedule: app.user.schedule
} %}
{% endif %}