@if(Session::has('error'))
{{ __('Alert!') }}
{{ __(Session::get('error')) }}
@endif
@if(Session::has('info'))
{{ __('Alert!') }}
{{ __(Session::get('info')) }}
@endif
@if(Session::has('warning'))
{{ __('Alert!') }}
{{ __(Session::get('warning')) }}
@endif
@if(Session::has('success'))
{{ __('Success!') }}
{{ __(Session::get('success')) }}
@endif