Changed error variable name
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
b87879f8e7
commit
522aa96fcc
1 changed files with 6 additions and 4 deletions
|
@ -115,17 +115,19 @@
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
|
|
||||||
@if ($messages = Session::get('bulk_errors'))
|
@if ($messages = Session::get('bulk_asset_errors'))
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<div class="alert alert alert-danger fade in">
|
<div class="alert alert alert-danger fade in">
|
||||||
<button type="button" class="close" data-dismiss="alert">×</button>
|
<button type="button" class="close" data-dismiss="alert">×</button>
|
||||||
<i class="fas fa-exclamation-triangle faa-pulse animated"></i>
|
<i class="fas fa-exclamation-triangle faa-pulse animated"></i>
|
||||||
<strong>{{ trans('general.notification_error') }}: </strong>
|
<strong>{{ trans('general.notification_error') }}: </strong>
|
||||||
{{ trans('general.notification_bulk_error_hint') }}
|
{{ trans('general.notification_bulk_error_hint') }}
|
||||||
@foreach($messages as $message)
|
@foreach($messages as $key => $message)
|
||||||
|
@for ($x = 0; $x < count($message); $x++)
|
||||||
<ul>
|
<ul>
|
||||||
<li>{{ $message }}</li>
|
<li>{{ $message[$x] }}</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@endfor
|
||||||
@endforeach
|
@endforeach
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Reference in a new issue