@extends('admin.layout') @section('title', 'Modifier un chantier') @section('content')

@yield('title')

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
{{-- ================= CLIENT ================= --}}

{{-- ================= DEVIS ================= --}}
Devis liés
@forelse($devisIds as $devisId)
@empty
@endforelse

{{-- ================= PLANNING ================= --}}

{{-- ================= ÉQUIPE ================= --}}
{{-- ================= EMPLOYÉS ================= --}}
@foreach ($users->chunk(ceil($users->count() / 2)) as $col)
@foreach ($col as $user)
users->contains('id', $user->id))>
@endforeach
@endforeach

{{-- ================= OBSERVATIONS ================= --}}
@endsection