@if (session('success'))
✓
{{ session('success') }}
@endif
@if (session('warning'))
⚠
{{ session('warning') }}
@endif
@if (session('error'))
⚠
{{ session('error') }}
@endif
@if ($errors->any())
⚠
Please correct the following:
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif