From 294b00888054adf29e1d6d689c283a6e35e24bde Mon Sep 17 00:00:00 2001 From: printempw Date: Wed, 18 Jan 2017 22:35:25 +0800 Subject: [PATCH] now maximum password length is extended to 64 --- app/Http/Controllers/AuthController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/AuthController.php b/app/Http/Controllers/AuthController.php index 796b9808..0ed30639 100644 --- a/app/Http/Controllers/AuthController.php +++ b/app/Http/Controllers/AuthController.php @@ -26,7 +26,7 @@ class AuthController extends Controller { $this->validate($request, [ 'identification' => 'required', - 'password' => 'required|min:6|max:16' + 'password' => 'required|min:6|max:64' ]); $identification = $request->input('identification');