How do I redirect back to my form page, with the given POST params, if my form action throws an exception?
POST
You can try this:
return redirect()->back()->withInput(Input::all())->with('message', 'Something went wrong!');