{{ form_start(form, {'attr': {'class': 'space-y-4'}}) }}
{{ form_label(form.name) }} {{ form_widget(form.name) }} {{ form_errors(form.name, {'attr': {'class': 'text-red-500 text-sm'}}) }}
{{ form_label(form.birthday) }} {{ form_widget(form.birthday) }} {{ form_errors(form.birthday, {'attr': {'class': 'text-red-500 text-sm'}}) }}
{{ form_label(form.colorHair) }} {{ form_widget(form.colorHair) }} {{ form_errors(form.colorHair, {'attr': {'class': 'text-red-500 text-sm'}}) }}
{{ form_label(form.origin) }} {{ form_widget(form.origin) }} {{ form_errors(form.origin, {'attr': {'class': 'text-red-500 text-sm'}}) }}
{{ form_label(form.size) }} {{ form_widget(form.size) }} {{ form_errors(form.size, {'attr': {'class': 'text-red-500 text-sm'}}) }}
{{ form_label(form.dick) }} {{ form_widget(form.dick) }} {{ form_errors(form.dick, {'attr': {'class': 'text-red-500 text-sm'}}) }}
{{ form_label(form.role) }} {{ form_widget(form.role) }} {{ form_errors(form.role, {'attr': {'class': 'text-red-500 text-sm'}}) }}
{{ form_label(form.circumcised) }} {{ form_widget(form.circumcised) }} {{ form_errors(form.circumcised, {'attr': {'class': 'text-red-500 text-sm'}}) }}
{{ form_label(form.tattoo) }} {{ form_widget(form.tattoo) }} {{ form_errors(form.tattoo, {'attr': {'class': 'text-red-500 text-sm'}}) }}
{{ form_label(form.piercing) }} {{ form_widget(form.piercing) }} {{ form_errors(form.piercing, {'attr': {'class': 'text-red-500 text-sm'}}) }}
{{ form_label(form.imageFile) }} {{ form_widget(form.imageFile) }} {{ form_errors(form.imageFile, {'attr': {'class': 'text-red-500 text-sm'}}) }}
Retour aux acteurs
{{ form_end(form) }}