@php
$messageTypes = ['success', 'error', 'warning', 'info'];
@endphp
@if (!empty(flash()->peekAll()))
@foreach ($messageTypes as $type)
@if (flash()->has($type))
@foreach (flash()->get($type) as $message)
{{ $message }}
@endforeach
@endif
@endforeach
@endif