{% extends 'menu/navigation_admin.html.twig' %} {% set side_nav = 'manage_produits' %} {% block content %}

{% if mode == "edition" %} Édition {% else %} Création {% endif %} d'un produit

{% if mode == "edition" %} Éditer {% else %} Entrer {% endif %} les informations du produit

{{ form_start(form, { 'attr': { 'class': 'm-form m-form--label-align-left- m-form--state-', 'id': 'm_form', 'autocomplete' : 'off' }}) }} {# Product details #}
{{ form_label(form.label) }} {{ form_widget(form.label) }}
{{ form_label(form.price) }} {{ form_widget(form.price) }}
{{ form_label(form.quantity) }} {{ form_widget(form.quantity) }}
{# Categories and brand #}
{{ form_label(form.categoryId) }} {{ form_widget(form.categoryId) }}
{{ form_start(form, { 'attr': { 'class': 'm-form m-form--label-align-left- m-form--state-', 'id': 'm_form', 'autocomplete' : 'off' }}) }}
{{ form_label(form.subCategoryId) }} {{ form_widget(form.subCategoryId) }}
{{ form_label(form.brandId) }} {{ form_widget(form.brandId) }}
{{ form_label(form.criteria) }} {{ form_widget(form.criteria) }}
{{ form_label(form.images) }} {{ form_widget(form.images) }}
{% if mode == "edition" %}

Images

{% if noImg %}

Aucune image importée pour cet article.

{% else %}
{% for image in images %} {% if image is not empty %} {% endif %} {% endfor %}
{% endif %} {% endif %} {# Images #} {#
{{ form_label(form.images, 'Images', {'label_attr': {'class': 'form-label'}}) }}
{{ form_widget(form.images, {'attr': {'style': 'display:none;' }}) }}
#}
{# Buttons #}
{% if mode == "edition" %} {% endif %} {{ form_end(form) }}
{% endblock %} {% block javascripts %} {{ encore_entry_script_tags('listManagers') }} {% endblock %}