-1
這是我的代碼Laravel驗證登錄返回特定的錯誤
public function login_Post()
{
if (Auth::user()->attempt(array('email' => Input::get('email'), 'password' => Input::get('password'), 'active' => 1)))
{
Event::fire('users.login');
return Redirect::to('/')->with('message', 'succsed');
}
else
return Redirect::to('user/login')->withInput(Input::except('password'));
}
我想提醒用戶,當他/她是不是積極主動,我怎麼能undrestand激活需要或登錄由錯誤的用戶名或密碼失敗?