Code de rapport d'erreur Laravel pour la vue
@if($errors->any())
<div class="round alert alert-danger alert-block">
@foreach ($errors->all() as $error)
<strong>{{ $error }}</strong>
@endforeach
</div>
@endif
Xfantasia