I\'m trying to get my flash message to display.
This is in my routing file
Route::post(\'users/groups/save\', function(){
return Redirect::to(\'users/g
i just realized in using the Redirect::to(), when you use the withInput() method, chaining a with() function to pass variables will not work. the only way is either you flash your inputs separately using Input::flash(), and use the with() to pass your variables or you pass your variable via session using Session::flash('key','val') and retrieve in the view via session::get('key').