@if ($errors->any())

 No of errors: ({{ count($errors->all()) }})

    @foreach ($errors->all() as $error)
  1. {{ $error }}
  2. @endforeach
@endif @if (Session::has('msg.error'))
Alert!
{{ Session::get('msg.error') }}
@endif @if (Session::has('msg.success'))
Alert!
{{ Session::get('msg.success') }}
@endif