{{ form_start(form, { 'attr': {'class': 'space-y-4'} }) }}
{{ form_row(form.title, { 'label': 'Titre', 'attr': { 'class': 'border border-gray-300 p-2 rounded-lg focus:ring-2 focus:ring-blue-500', 'placeholder': 'Entrez le titre du poste' } }) }} {{ form_row(form.description, { 'label': 'Description', 'attr': { 'class': 'border border-gray-300 p-2 rounded-lg focus:ring-2 focus:ring-blue-500', 'placeholder': 'Décrivez les responsabilités du poste', 'rows': 5 } }) }}
{{ form_end(form) }}