@if(Session::has('success'))

Success:

{!! Session::get('success') !!}
@endif @if(Session::has('error'))

Errors!

{!! Session::get('error') !!}
@endif @if(count($errors)>0)

Errors!

@foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
    @endif