{{ Form::label('ref', 'Numéro de lot') }}
@include('components.input', ['name' => 'ref', 'value' => (isset($ref)) ? $ref : null])
{{ Form::label('type_dispositifs', 'Type de dispositifs') }}
@include('components.select', ['name' => 'type_dispositif_id', 'list' => $type_dispositifs, 'value' => (isset($type_dispositif_id)) ? $type_dispositif_id : null])
{{ Form::label('type_lots', 'Type de lot') }}
@include('components.select', ['name' => 'type_lot_id', 'list' => $type_lots, 'value' => (isset($type_lot_id)) ? $type_lot_id : null ])
{{ Form::label('nb_etages', 'Agencement') }}
@include('components.select', ['name' => 'nb_etages', 'list' => [1 => 'Aucun étage', 2 => 'Duplex', 3=> 'Triplex'], 'value' => (isset($nb_etages)) ? $nb_etages : 1])
{{ Form::label('statut_id', 'Statut') }}
@include('components.select', ['name' => 'statut_id', 'list' => $type_lot_statuts, 'value' => (isset($statut_id)) ? $statut_id : 3])
{{ Form::label('description', 'Description') }}
{{ Form::label('residence_id', 'Résidence') }}
@include('components.select', ['name' => 'residence_id', 'id_name' => 'residence_id', 'list' => $residences, 'value' => (isset($residence_id)) ? $residence_id : null])
{{ Form::label('residence_batiment_id', 'Batiment') }}
@include('components.select', ['name' => 'residence_batiment_id', 'id_name' => 'residence_batiment_id', 'list' => (isset($batiments)) ? $batiments : null, 'value' => (isset($residence_batiment_id)) ? $residence_batiment_id : null])
{{ Form::label('position_etage', 'Etage') }}
@include('components.select', ['name' => 'position_etage', 'id_name' => 'position_etage', 'list' => (isset($etages)) ? $etages : null, 'value' => (isset($position_etage)) ? $position_etage : null])
{{ Form::label('adresse', 'Adresse') }}
@include('components.input', ['name' => 'adresse', 'value' => (isset($adresse)) ? $adresse : null])
{{ Form::label('complement_adresse', 'Complément d\'adresse') }}
@include('components.input', ['name' => 'complement_adresse', 'value' => (isset($complement_adresse)) ? $complement_adresse : null])
{{ Form::label('code_postal', 'Code postal') }}
@include('components.input', ['name' => 'code_postal', 'value' => (isset($code_postal)) ? $code_postal : null])
{{ Form::label('ville', 'Ville') }}
@include('components.city', ['name' => 'ville', 'list' => (isset($ville)) ? [$ville_id => $ville] : [], 'value' => (isset($ville_id)) ? $ville_id : null])
{{ Form::label('surface', 'Surface') }}
@include('components.input', ['name' => 'surface', 'value' => (isset($surface)) ? $surface : null])
{{ Form::label('surface_terrain', 'Terrain') }}
@include('components.input', ['name' => 'surface_terrain', 'value' => (isset($surface_terrain)) ? $surface_terrain : null])
{{ Form::label('surface_balcon', 'Balcon / Terrasse') }}
@include('components.input', ['name' => 'surface_balcon', 'value' => (isset($surface_balcon)) ? $surface_balcon : null])
{{ Form::label('surface_cave', 'Cave') }}
@include('components.input', ['name' => 'surface_cave', 'value' => (isset($surface_cave)) ? $surface_cave : null])
{{ Form::label('surface_soussol', 'Sous-sol') }}
@include('components.input', ['name' => 'surface_soussol', 'value' => (isset($surface_soussol)) ? $surface_soussol : null])
{{ Form::label('surface_grenier', 'Grenier') }}
@include('components.input', ['name' => 'surface_grenier', 'value' => (isset($surface_grenier)) ? $surface_grenier : null])
{{ Form::label('prix_achat', 'Prix acquisition') }}
@include('components.money', ['name' => 'prix_achat', 'value' => (isset($prix_achat)) ? $prix_achat : null])
{{ Form::label('prix_travaux', 'Montant travaux') }}
@include('components.money', ['name' => 'prix_travaux', 'value' => (isset($prix_travaux)) ? $prix_travaux : null])
{{ Form::label('prix_total', 'Prix total') }}
@include('components.money', ['name' => 'prix_total', 'value' => (isset($prix_total)) ? $prix_total : null])
{{ Form::label('prix_cave', 'Prix cave') }}
@include('components.money', ['name' => 'prix_cave', 'value' => (isset($prix_cave)) ? $prix_cave : null])
{{ Form::label('prix_stationnement', 'Prix stationnement') }}
@include('components.money', ['name' => 'prix_stationnement', 'value' => (isset($prix_stationnement)) ? $prix_stationnement : null])
{{ Form::label('package', 'Package') }}
@include('components.money', ['name' => 'package', 'value' => (isset($package)) ? $package : null])
{{ Form::label('honoraires_agence', 'Honoraires Agence') }}
@include('components.money', ['name' => 'honoraires_agence', 'value' => (isset($honoraires_agence)) ? $honoraires_agence : null])
{{ Form::label('frais_notaire', 'Frais notaire') }}
@include('components.money', ['name' => 'frais_notaire', 'value' => (isset($frais_notaire)) ? $frais_notaire : null])
{{ Form::label('frais_bancaire', 'Garantie bancaire') }}
@include('components.money', ['name' => 'frais_bancaire', 'value' => (isset($frais_bancaire)) ? $frais_bancaire : null])
{{ Form::label('courtage_bancaire', 'Courtage bancaire') }}
@include('components.money', ['name' => 'courtage_bancaire', 'value' => (isset($courtage_bancaire)) ? $courtage_bancaire : null])
{{ Form::label('interets_intercalaires', 'Interets intercalaires') }}
@include('components.money', ['name' => 'interets_intercalaires', 'value' => (isset($interets_intercalaires)) ? $interets_intercalaires : null])
{{ Form::label('garantie_revente', 'Garantie revente') }}
@include('components.money', ['name' => 'garantie_revente', 'value' => (isset($garantie_revente)) ? $garantie_revente : null])
{{ Form::label('loyer_logement', 'Loyer logement') }}
@include('components.money', ['name' => 'loyer_logement', 'value' => (isset($loyer_logement)) ? $loyer_logement : null])
{{ Form::label('loyer_stationnement', 'Loyer stationnement') }}
@include('components.money', ['name' => 'loyer_stationnement', 'value' => (isset($loyer_stationnement)) ? $loyer_stationnement : null])
@push('js')
@endpush