{# Section 1 : Identification #}
Identification & Type
{{ form_row(form.nomBien, {'label': 'Nom du Bien (ex: Villa A1)'}) }}
{{ form_row(form.typeBien) }}
{{ form_row(form.numeroLot) }}
{{ form_row(form.ilot) }}
{{ form_row(form.batiment) }}
{# Section 2 : Mesures & Caractéristiques #}
Mesures & Pièces
{{ form_row(form.surfaceTerrain) }}
{{ form_row(form.surfaceBatie) }}
{{ form_row(form.nbPieces) }}
{{ form_row(form.nbChambres) }}
{{ form_row(form.nbSallesEau) }}
{{ form_row(form.etage) }}
{# Section 3 : Finance & Statut #}
Données Commerciales
{{ form_row(form.prixStandard, {
'attr': {'placeholder': 'Ex: 45000000'},
'help': 'Prix de vente de base hors remises.'
}) }}
{{ form_row(form.statut) }}
{% if form.projet is defined %}
{{ form_row(form.projet) }}
{% endif %}
{{ form_end(form) }}