@if(session()->has('success'))
{{ session()->get('success') }}
@endif
@if(session()->has('error'))
{{ session()->get('error') }}
@endif
@if(session()->has('info'))
{{ session()->get('info') }}
@endif
@if(session()->has('warning'))
{{ session()->get('warning') }}
@endif
@if ($errors->any())
Whoops! There were some problems with your input.
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif