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