mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-23 20:00:33 -04:00
15 lines
326 B
PHP
15 lines
326 B
PHP
@if(session('responseErrors'))
|
|
<div class="alert alert-danger">
|
|
@foreach(session('responseErrors') as $error)
|
|
<p>{!! $error !!}</p>
|
|
@endforeach
|
|
</div>
|
|
@endif
|
|
|
|
@if($errors->any())
|
|
<div class="alert alert-danger">
|
|
@foreach($errors->all() as $error)
|
|
<p>{!! $error !!}</p>
|
|
@endforeach
|
|
</div>
|
|
@endif |