@if ($errors->any())
{{ trans('general.notification_error') }}: {{ trans('general.notification_error_hint') }}
@endif @if ($message = Session::get('status'))
{{ trans('general.notification_success') }}: {{ $message }}
@endif @if ($message = Session::get('success'))
{{ trans('general.notification_success') }}: {{ $message }}
@endif @if ($message = Session::get('success-unescaped'))
{{ trans('general.notification_success') }}: {!! $message !!}
@endif @if ($assets = Session::get('assets')) @foreach ($assets as $asset)
{{ trans('general.asset_information') }}:
@endforeach @endif @if ($consumables = Session::get('consumables')) @foreach ($consumables as $consumable)
{{ trans('general.consumable_information') }}:
@endforeach @endif @if ($accessories = Session::get('accessories')) @foreach ($accessories as $accessory)
{{ trans('general.accessory_information') }}:
@endforeach @endif @if ($message = Session::get('error'))
{{ trans('general.error') }}: {{ $message }}
@endif @if ($messages = Session::get('error_messages')) @foreach ($messages as $message)
{{ trans('general.notification_error') }}: {{ $message }}
@endforeach @endif @if ($messages = Session::get('bulk_asset_errors'))
{{ trans('general.notification_error') }}: {{ trans('general.notification_bulk_error_hint') }} @foreach($messages as $key => $message) @for ($x = 0; $x < count($message); $x++) @endfor @endforeach
@endif @if ($message = Session::get('warning'))
{{ trans('general.notification_warning') }}: {{ $message }}
@endif @if ($message = Session::get('info'))
{{ trans('general.notification_info') }}: {{ $message }}
@endif