@extends('dashboard') @section('content')

DOSSIER DE : {{ $dossier[0]->client_prenom . ' '. $dossier[0]->client_nom }}

{{ csrf_field() }}

@if ($errors->has('nom')) {{ $errors->first('nom') }} @endif
@if ($errors->has('prenom')) {{ $errors->first('prenom') }} @endif
@if ($errors->has('prenom')) {{ $errors->first('prenom') }} @endif
@if ($errors->has('telephone')) {{ $errors->first('telephone') }} @endif
@if ($errors->has('telephone')) {{ $errors->first('telephone') }} @endif
@if ($errors->has('adresse_email')) {{ $errors->first('adresse_email') }} @endif
@if ($errors->has('numero_cin_passeport')) {{ $errors->first('numero_cin_passeport') }} @endif

LISTE DES PARCELLES DE {{ $dossier[0]->site }}

@foreach($parcelles as $p) @endforeach
Numèro Parcelle Surface m² Action
{{ $p->numero }} {{ $p->surface }}   @if(Auth::user()->type == 'Super Administrateur') @endif

LISTE DES VERSEMENTS

@foreach($versements as $v) @endforeach
Date Type de versement Montant Action
{{ $v->date }} {{ $v->libelle }} {{ $v->montant }}   @if(Auth::user()->type == 'Super Administrateur') @endif  
@endsection