2020-02-24 22:17:16 +01:00
|
|
|
@if(session('responseErrors'))
|
|
|
|
|
<div class="alert alert-danger">
|
2020-04-06 23:21:46 +02:00
|
|
|
@foreach(session('responseErrors') as $error)
|
|
|
|
|
<p>{!! $error !!}</p>
|
|
|
|
|
@endforeach
|
2020-02-24 22:17:16 +01:00
|
|
|
</div>
|
2020-04-29 14:33:55 +02:00
|
|
|
@endif
|
|
|
|
|
|
|
|
|
|
@if($errors->any())
|
|
|
|
|
<div class="alert alert-danger">
|
|
|
|
|
@foreach($errors->all() as $error)
|
|
|
|
|
<p>{!! $error !!}</p>
|
|
|
|
|
@endforeach
|
|
|
|
|
</div>
|
2020-02-24 22:17:16 +01:00
|
|
|
@endif
|