@extends('dashboard') @section('content')
NOUVELLE VISITE
Veuillez remplir ces champs
{{ csrf_field() }}
Client
@foreach($clients as $c)
{{ $c->prenom . ' ' . $c->nom }}
@endforeach
Parcelles
@foreach($parcelles as $p)
{{ $p->site . ' ' . $p->numero . ' ' . $p->surface }}
@endforeach
Commentaires
@if ($errors->has('commentaires'))
{{ $errors->first('commentaires') }}
@endif
Agents
@foreach($agents as $a)
{{ $a->prenom . ' ' . $a->nom }}
@endforeach
ENREGISTRER
@endsection