Try
return Redirect::back()->withErrors(['msg' => 'The Message']);
and inside your view call this
@if($errors->any())
<h4>{{$errors->first()}}</h4>
@endif
Try
return Redirect::back()->withErrors(['msg' => 'The Message']);
and inside your view call this
@if($errors->any())
<h4>{{$errors->first()}}</h4>
@endif