From 522aa96fcc016a50c70f14c1c5e6c428d5f50a88 Mon Sep 17 00:00:00 2001 From: snipe Date: Thu, 26 Oct 2023 02:36:18 +0100 Subject: [PATCH] Changed error variable name Signed-off-by: snipe --- resources/views/notifications.blade.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/resources/views/notifications.blade.php b/resources/views/notifications.blade.php index eca773e21..9dbb54751 100755 --- a/resources/views/notifications.blade.php +++ b/resources/views/notifications.blade.php @@ -115,17 +115,19 @@ @endif -@if ($messages = Session::get('bulk_errors')) +@if ($messages = Session::get('bulk_asset_errors'))
{{ trans('general.notification_error') }}: {{ trans('general.notification_bulk_error_hint') }} - @foreach($messages as $message) + @foreach($messages as $key => $message) + @for ($x = 0; $x < count($message); $x++)
    -
  • {{ $message }}
  • -
+
  • {{ $message[$x] }}
  • + + @endfor @endforeach