@extends('base') @section('title', $property->exists ? 'Editer une maison': 'Créer une maison') @section('content')

@yield('title')

@csrf @method($house->exists ? 'put' : 'post') @include('admin.properties.propertyform')
@include('shared.input', ['class' => 'col-md-3', 'label' => 'Garage', 'name' => 'garage', 'type' => 'checkbox', 'value' => old('garage', $house->garage)])
@include('shared.input', ['class' => 'col-md-3', 'label' => 'Superficie du terrain', 'name' => 'land_surface', 'value' => old('land_surface', $house->land_surface)]) @include('shared.input', ['class' => 'col-md-3', 'label' => 'Nombre d\'étages', 'name' => 'floors', 'value' => old('floors', $house->floors)]) @include('shared.input', ['class' => 'col-md-3', 'label' => 'Piscine', 'name' => 'swimming_pool', 'type' => 'checkbox', 'value' => 1, 'checked' => old('swimming_pool', $house->swimming_pool)])
@if ($property->photos) @endif @if ($errors->any())
@endif @endsection