@extends('layouts.app') @section('content')

Formulaire de création de compte utilisateur

@if(Session::has('message'))
{{Session::get('message')}}
@endif @if (!empty($errors)) @endif
{!! csrf_field() !!}
@if ($errors->has('nom')) {{ $errors->first('nom') }} @endif
@if ($errors->has('prenoms')) {{ $errors->first('prenoms') }} @endif
@if ($errors->has('profil_id')) {{ $errors->first('profil_id') }} @endif
@if ($errors->has('telephone')) {{ $errors->first('telephone') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@endsection