{# templates/form/contact.html.twig #} {{ form_start(form, { 'attr': { 'class': 'space-y-4' } }) }}
{{ form_label(form.name, 'Nom', { 'attr': { 'class': 'block text-sm font-medium text-gray-700' } }) }} {{ form_widget(form.name, { 'attr': { 'class': 'mt-1 block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm' } }) }} {{ form_errors(form.name) }}
{{ form_label(form.firstName, 'Prénom', { 'attr': { 'class': 'block text-sm font-medium text-gray-700' } }) }} {{ form_widget(form.firstName, { 'attr': { 'class': 'mt-1 block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm' } }) }} {{ form_errors(form.firstName) }}
{{ form_label(form.email, 'Adresse email', { 'attr': { 'class': 'block text-sm font-medium text-gray-700' } }) }} {{ form_widget(form.email, { 'attr': { 'class': 'mt-1 block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm' } }) }} {{ form_errors(form.email) }}
{{ form_label(form.subject, 'Objet', { 'attr': { 'class': 'block text-sm font-medium text-gray-700' } }) }} {{ form_widget(form.subject, { 'attr': { 'class': 'mt-1 block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm' } }) }} {{ form_errors(form.subject) }}
{{ form_label(form.content, 'Contenu', { 'attr': { 'class': 'block text-sm font-medium text-gray-700' } }) }} {{ form_widget(form.content, { 'attr': { 'class': 'mt-1 block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm', 'rows': '5' } }) }} {{ form_errors(form.content) }}
{{ form_end(form) }}