@extends('layouts.app') @section('title', $chantier ? 'Modifier chantier' : 'Nouveau chantier') @section('breadcrumb', 'Chantiers / Formulaire') @section('content')
@csrf @if($chantier) @method('PUT') @endif @if($errors->any())
@foreach($errors->all() as $e)
{{ $e }}
@endforeach
@endif
Annuler
@endsection