@extends('base') @section('title', $land->exists ? 'Editer un terrain' : 'Créer un terrain') @section('content')

@yield('title')

@csrf @method($land->exists ? 'put' : 'post') @include('admin.properties.propertyform')
@include('shared.input', ['class' => 'col-md-3', 'label' => 'Pourcentage de l\'emprise au sol', 'name' => 'footprint_percentage', 'value' => old('footprint_percentage', $land->footprint_percentage)])
@include('shared.input', ['class' => 'col-md-3', 'label' => 'Zone PLU', 'name' => 'plu_zone', 'value' => old('plu_zone', $land->plu_zone)])
@if ($property->photos) @endif @if ($errors->any())
@endif @endsection