{% extends 'layout/base.html.twig' %} {% form_theme form 'bootstrap_5_layout.html.twig' %} {% block body %}
{% include 'components/layout/_title_3.html.twig' with { name: 'edit_object.form.title'|trans } %} {% if info is defined and not null %} {% include 'components/layout/_text.html.twig' with { text: info } %} {% endif %}
{{ form_start(form) }} {% include 'components/product/_object_fields.html.twig' %} {% if product.images is not empty %}
{% for image in product.images %} {% include 'components/form/_photo_preview.html.twig' with { image, entity: product, } %} {% endfor %}
{% endif %} {% include 'components/product/_address_form.html.twig' %}
{{ form_widget(form.submit) }}
{{ form_end(form) }}
{% endblock %}