{{ form_start(form, { 'action': path('app_home'), 'method': 'POST' }) }}
{{ form_label(form.profile) }} {{ form_widget(form.profile, {'attr': {'class': 'form-control'}}) }} {{ form_errors(form.profile) }}
{{ form_label(form.budget) }} {{ form_widget(form.budget, {'attr': {'class': 'form-control'}}) }} {{ form_errors(form.budget) }}
{{ form.project_type.vars.label }}
{% for child in form.project_type %}
{{ form_widget(child) }} {{ form_label(child) }}
{% endfor %}
{{ form_errors(form.project_type) }}
{{ form_label(form.name) }} {{ form_widget(form.name, {'attr': {'class': 'form-control'}}) }} {{ form_errors(form.name) }}
{{ form_label(form.email) }} {{ form_widget(form.email, {'attr': {'class': 'form-control'}}) }} {{ form_errors(form.email) }}
{{ form_label(form.phone) }} {{ form_widget(form.phone, {'attr': {'class': 'form-control', 'placeholder': '06 32 11 15 18'}}) }} {{ form_errors(form.phone) }}
{{ form_label(form.city) }} {{ form_widget(form.city, {'attr': {'class': 'form-control'}}) }} {{ form_errors(form.city) }}
{{ form_label(form.description) }} {{ form_widget(form.description, {'attr': {'class': 'form-control', 'rows': 4, 'placeholder': 'Décrivez-nous votre projet en quelques mots...'}}) }} {{ form_errors(form.description) }}
{{ form_end(form) }}