0
A
回答
0
他在這裏的我的代碼
public function dologin() {
$input = Input::all();
$rules = [
'username' => 'required',
'password' => 'required|min:6',
];
$validator = Validator::make($input, $rules);
if ($validator->fails()) {
Alert()->info('Username dan password tidak boleh kosong Panjang Password minimal 6 huruf', 'Info')->persistent('OK');
return redirect()->route('auth.login');
} else {
$user = CoreUser::where('username', $input['username'])->orWhere('user_email', $input['username'])->first();
if ($user) {
if($user->user_active != 1){
Alert()->error('Username sudah tidak aktif', 'Info')->persistent('OK');
return redirect()->route('auth.login')->withErrors("User tidak aktif");
}
if (Hash::check($input['password'], $user->password)) {
$session = [
'username' => $user->username,
'password' => $input['password']
];
$remember = true;
if (Auth::attempt($session, true)) {
return redirect()->intended('/');
} else {
// no action
dd("failed attempt");
}
} else {
//dd("hash check failed");
// no action
}
}
Alert()->error('Username dan password tidak sesuai', 'Gagal')->persistent('OK');
return redirect()->route('auth.login')->withErrors("Invalid Username or Password");
}
}
相關問題
- 1. Laravel [ErrorException] unserialize():82字節的偏移量爲78的錯誤
- 2. 反序列化():錯誤的偏移量537爲0字節
- 3. 解序列化 - 錯誤在偏移0的64字節
- 4. 在php中換行時的偏移量
- 5. Laravel 4 - 反序列化():錯誤的偏移量的32 0字節
- 6. 在bootstrap.inc中的偏移量爲2的16字節錯誤936行
- 7. 複製字節時出錯 - 偏移量和長度超出範圍。
- 8. 計算字節偏移量的問題
- 9. 讀入偏移量的字節數組?
- 10. 反序列化在9字節偏移量5的錯誤
- 11. 未定義,偏移量:在0的wordpress
- 12. C結構的第一個字段總是保證在0的偏移量處?
- 13. 找出時區偏移量
- 14. Java中的「在偏移量爲0時解除日期異常」
- 15. 佈局錯誤:106寬度:0 ellipsizedWidth:0
- 16. 注意:未定義的偏移量:字段爲空時爲0
- 17. 未定義的偏移量:0 preg_match中的錯誤
- 18. 什麼是Hadoop輸入文件格式中的行偏移量和字節偏移量?在鍵值對的Map-Reduce程序中如何考慮偏移量?
- 19. 在特定偏移量後刪除一定數量的字節
- 20. 在java中的特定偏移量之間讀取字節
- 21. 使用MRJob獲取字節偏移量
- 22. 調用堆棧字節偏移量
- 23. 未定義的偏移量:0 yii2
- 24. 未定義的偏移量0
- 25. 未定義的偏移量0:Laravel
- 26. 注意:未定義偏移量:0在
- 27. 從字節偏移量中檢測UTF NSString中的字符位置(是SQLite偏移量()和編碼問題)
- 28. 時出錯 - 未定義偏移:0:當我試圖安裝SiteCake
- 29. 在Perl中提取字偏移時出錯
- 30. 未定義的偏移量0在PHP中的json值