{{ form_start(form, {'attr': {'class': 'col-start-4 col-span-4'}}) }}
{{ form_label(form.name, 'Nom du motif', {'label_attr': {'class': 'block text-3xl lg:text-sm font-medium text-gray-700'}}) }}
{{ form_row(form.name, {'attr': {'class': 'input-field form-control w-4/5 shadow appearance-none border ml-6 lg:ml-0 rounded text-3xl lg:text-base py-3 lg:py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline'}}) }}
{# Champ "description" #}
{{ form_label(form.description, 'Décrir succintement ce motif', {'label_attr': {'class': 'block text-3xl lg:text-sm font-medium text-gray-700'}}) }}
{{ form_row(form.description, {'attr': {'class': 'textarea-field resize form-control w-4/5 shadow appearance-none border ml-6 lg:ml-0 rounded text-3xl lg:text-base py-3 lg:py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline','placeholder': 'Description', 'cols': '23'}}) }}
{{ form_end(form) }}