Session::flash('formulario', Input::all());
change to:
Session::flash('formulario', Input::only('f1', 'f2')); //all except the file fields
Or just use return Redirect::back()->withErrors($errors)->withInput();
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community