@if (session('success'))
merge(['class' => 'bg-green-100 border-l-4 border-green-500 text-green-700 p-4 max-w-7xl mx-auto sm:px-6 lg:px-8 mb-2 shadow-xl']) }} data-status-sound="success" role="alert">

Success

{{ session('success') }}

@endif @if (session('error'))
merge(['class' => 'max-w-7xl mx-auto sm:px-6 lg:px-8 bg-red-100 border-l-4 border-red-500 text-red-700 py-4 mx-6']) }} data-status-sound="error" role="alert">

Error

@if(is_array(session('error')))

{{ session('error.message') }}

{{ session('error.db') }}

@else

{{ session('error') }}

@endif
@endif @if (session('warning'))
merge(['class' => 'bg-yellow-100 border-l-4 border-yellow-500 text-yellow-700 p-4 mx-6']) }} data-status-sound="warning" role="alert">

Warning

{{ session('warning') }}

@endif @if (session('info'))
merge(['class' => 'bg-blue-100 border-l-4 border-blue-500 text-blue-700 p-4 mx-6']) }} data-status-sound="info" role="alert">

Information

{{ session('info') }}

@endif @once @push('scripts') @endpush @endonce