I\'m making my first app in Laravel and am trying to get my head around the session flash messages. As far as I\'m aware in my controller action I can set a flash message ei
You can pass different type of message using with
return redirect()->back()->with('error', 'Your current account is inactive ')->with('error2','please check'); To show message @if(session('error')) {{session('error')}} {{session('error2')}}
{{session('error')}}
{{session('error2')}}
@endif