@extends('dashboard') @section('content')
VOTRE PROFILE
{{ csrf_field() }}
Nom
@if ($errors->has('nom'))
{{ $errors->first('nom') }}
@endif
Prenom
@if ($errors->has('prenom'))
{{ $errors->first('prenom') }}
@endif
Telephone
@if ($errors->has('telephone'))
{{ $errors->first('telephone') }}
@endif
Email
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@endsection