How do I redirect back to my form page, with the given POST params, if my form action throws an exception?
POST
You can use any of these two:
return redirect()->back()->withInput(Input::all())->with('message', 'Some message');
Or,
return redirect('url_goes_here')->withInput(Input::all())->with('message', 'Some message');