//将用户提交的信息存入Session Input::flash(); //指定信息放session Input::flashOnly('username', 'email'); Input::flashExcept('password'); //跳到前一个页面,带上输入信息 return Redirect::to('form')->withInput(); return Redirect::to('form')->withInput(Input::except('password')); //获取持久化的信息 Input::old('username');