You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
569 B
23 lines
569 B
<! This will check for errors and loop through the errors>
|
|
@if(count($errors) > 0)
|
|
@foreach($errors->all() as $error)
|
|
<! This simply display what the error is>
|
|
<div class="alert alert-danger">
|
|
{{$error}}
|
|
</div>
|
|
@endforeach
|
|
@endif
|
|
|
|
<! This look out for the session success>
|
|
@if(session('success'))
|
|
<div class="alert alert-success">
|
|
{{session('success')}}
|
|
</div>
|
|
@endif
|
|
|
|
<! This look out for the session error>
|
|
@if(session('error'))
|
|
<div class="alert alert-danger">
|
|
{{session('error')}}
|
|
</div>
|
|
@endif
|