@if (Session::has('success'))
Success! {{ Session::get('success') }}.
@endif @if (Session::has('error'))
Error! {{ Session::get('error') }}.
@endif @if (Session::has('warning'))
Warning! Something went wrong. Please check.
@endif
@if ($errors->any())
@foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
    @endif