@if(Session::has('message'))
@if (Session::get('alert-type') == 'success')
{{ Session::get('message') }}
@endif
@if (Session::get('alert-type') == 'error')
{{ Session::get('message') }}
@endif
@if (Session::get('alert-type') == 'warning')
{{ Session::get('message') }}
@endif
@if (Session::get('alert-type') == 'info')
{{ Session::get('message') }}
@endif
@if ($errors->any())
Please check the form below for errors
@endif
@endif