{% 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 %}
{{ form_widget(form.name, { 'attr': { 'class': 'form-control m-input' } }) }}
{{ form_errors(form) }}
{{ form_end(form) }}