1@if(count($errors) > 0 )
2<div class="alert alert-danger alert-dismissible fade show" role="alert">
3 <button type="button" class="close" data-dismiss="alert" aria-label="Close">
4 <span aria-hidden="true">×</span>
5 </button>
6 <ul class="p-0 m-0" style="list-style: none;">
7 @foreach($errors->all() as $error)
8 <li>{{$error}}</li>
9 @endforeach
10 </ul>
11</div>
12@endif