@foreach (['info', 'danger', 'success', 'warning'] as $type)
@if (session()->has($type))
{{ __('alerts.'.$type) }}! {!! session($type) !!}
@endif
@endforeach
@if (count($errors) > 0)
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif