{{ form_start(form, {'attr': {'class': 'space-y-6'}}) }}
{{ form_widget(form.firstName, {'attr': {'class': 'mt-1 block w-full h-12 shadow-sm text-2xl lg:text-lg border-gray-300 focus:ring-blue-500 focus:border-blue-500 rounded-md', 'placeholder': 'Entrez votre prénom'}}) }}
{{ form_widget(form.email, {'attr': {'class': 'mt-1 block w-full h-12 shadow-sm text-2xl lg:text-lg border-gray-300 focus:ring-blue-500 focus:border-blue-500 rounded-md', 'placeholder': 'Entrez votre email'}}) }}
{{ form_widget(form.title, {'attr': {'class': 'mt-1 block w-full h-12 shadow-sm text-2xl lg:text-lg border-gray-300 focus:ring-blue-500 focus:border-blue-500 rounded-md', 'placeholder': 'Choisissez un titre pour cet avis'}}) }}
{% for choice in form.rating %} {% endfor %}
{{ form_widget(form.content, {'attr': {'class': 'mt-1 block w-full h-24 resize-none shadow-sm text-2xl lg:text-lg border-gray-300 focus:ring-blue-500 focus:border-blue-500 rounded-md', 'placeholder': 'Entrez votre commentaire ici', 'aria-describedby': 'content-help'}}) }}
{{ form_end(form) }}