{% if type == 'new' %} {{ form_start(form, { 'action': path('value_declination_new', { 'declinaison_id': declinaison.id }), 'method': 'POST', 'attr': { 'class': 'm-form m-form--fit m-form--label-align-right' } }) }} {% else %} {{ form_start(form, { 'action': path('value_declination_edit', { 'id': value.id }), 'method': 'POST', 'attr': { 'class': 'm-form m-form--fit m-form--label-align-right' } }) }} {% endif %}
{{ type == 'new' ? 'Ajouter une valeur' : 'Modifier la valeur' }}
{{ form_widget(form.name, { 'attr': { 'class': 'form-control m-input' } }) }}
{{ form_widget(form.code, { attr: { id: 'form_code', style: 'display:none;' } }) }}
{# 🎨 Sélecteur de couleur natif #} {# 📝 Affichage code couleur #} {# 🟦 Aperçu visuel #}
{{ form_errors(form) }}
{{ form_widget(form.save, { 'attr': { 'class': 'btn btn-primary' }, 'label': 'Enregistrer' }) }}
{{ form_end(form) }}