这是我的 postLogin 方法:
$userdata = array(
'email' => Input::get('email'),
'password' => Input::get('password'),
'enabled' => 1
);
if (Auth::attempt($userdata))
{
return Redirect::intended('/');
}
return Redirect::route('login')
->withInput(Input::except('password'))
->withErrors(array('password' => 'Password invalid'));
我在我的模型中使用 Ardent。由于我没有使用 Ardent->save(),如何验证登录表单并获取错误消息?