{{ form_start(form, {'action': path('app_appointment_new')}) }}
{{ form_label(form.lastName, 'Nom de famille', {'label_attr': {'class': 'text-3xl lg:text-xl font-bold block text-gray-700'}}) }} {{ form_widget(form.lastName, {'attr': {'class': 'text-3xl lg:text-xl input border border-gray-300 p-2 w-full rounded shadow-lg'}}) }} {{ form_errors(form.lastName) }}
{{ form_label(form.firstName, 'Prénom', {'label_attr': {'class': 'text-3xl lg:text-xl font-bold block text-gray-700'}}) }} {{ form_widget(form.firstName, {'attr': {'class': 'text-3xl lg:text-xl input border border-gray-300 p-2 w-full rounded shadow-lg'}}) }} {{ form_errors(form.firstName) }}
{{ form_label(form.email, 'Email', {'label_attr': {'class': 'text-3xl lg:text-xl font-bold block text-gray-700'}}) }} {{ form_widget(form.email, {'attr': {'class': 'text-3xl lg:text-xl input border border-gray-300 p-2 w-full rounded shadow-lg'}}) }} {{ form_errors(form.email) }}
{{ form_label(form.reservedAt, 'Date et heure du rendez-vous', {'label_attr': {'class': 'text-3xl lg:text-xl font-bold block text-gray-700'}}) }} {{ form_widget(form.reservedAt, {'attr': {'class': 'text-3xl lg:text-xl input border border-gray-300 p-2 w-full rounded shadow-lg'}}) }} {{ form_errors(form.reservedAt) }}
{{ form_label(form.comment, 'Commentaire', {'label_attr': {'class': 'text-3xl lg:text-xl font-bold block text-gray-700'}}) }} {{ form_widget(form.comment, {'attr': {'class': 'text-3xl lg:text-xl input border border-gray-300 p-2 w-full rounded shadow-lg'}}) }} {{ form_errors(form.comment) }}
{{ form_end(form) }}