【发布时间】:2018-08-16 14:17:34
【问题描述】:
我正在尝试使用表单数据重定向不成功的登录。
我的代码:
//if unsuccessful, redirect back to login with form data
return redirect()
->back()
->withInput($request->only('email', 'password','remember'));
但是这仅返回电子邮件数据,我如何返回密码数据?
【问题讨论】:
标签: php redirect login laravel-5.4