我的表单提交控制器
// Code to get input from user and validation is done
// if validation fails
return Redirect::to(URL::route('showlogin'))->withInput();
showlogin方法
$view->email = Input::flashOnly('email');
$view->password = Input::flashOnly('password');
return $view;
查看页面
<input type="text" value="{{ $email }}" name="email">
<input type="password" value="{{ $password }}" name="password">
验证失败时,页面未填充上一次输入的框。我在这里错过了什么吗?
答案 0 :(得分:0)
使用Laravel表单助手创建表单输入以记住旧输入
<input type="text" value="{{ $email }}" name="email">
<input type="password" value="{{ $password }}" name="password">
将是
{{Form::email('email', Input::old('email') ) }}
{{Form::text('password', Input::old('password')) }}