@extends('dashboard') @section('content')
NOUVEAU VERSEMENT
Veuillez remplir ces champs
{{ csrf_field() }}
Client
@foreach($clients as $c)
{{ $c->prenom .' '. $c->nom }}
@endforeach
Montant
@if ($errors->has('montant'))
{{ $errors->first('montant') }}
@endif
ENREGISTRER
@endsection