@foreach(['success' => 'emerald', 'warning' => 'amber', 'error' => 'red'] as $type => $color)
@if(session($type))
{{ $type === 'success' ? 'โ
' : ($type === 'warning' ? 'โ ๏ธ' : 'โ') }}
{{ session($type) }}
@endif
@endforeach
@if($errors->any())
โ Terdapat kesalahan:
@foreach($errors->all() as $err)
- {{ $err }}
@endforeach
@endif