From d9552e268cf1fabd9eee2e69747dcf93d7cd8364 Mon Sep 17 00:00:00 2001 From: gplane Date: Thu, 27 Apr 2017 12:42:04 +0800 Subject: [PATCH] Fix password length of installation --- app/Http/Controllers/SetupController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/SetupController.php b/app/Http/Controllers/SetupController.php index ea1bc175..e9e5afcf 100644 --- a/app/Http/Controllers/SetupController.php +++ b/app/Http/Controllers/SetupController.php @@ -32,7 +32,7 @@ class SetupController extends Controller { $this->validate($request, [ 'email' => 'required|email', - 'password' => 'required|min:6|max:16|confirmed', + 'password' => 'required|min:8|max:16|confirmed', 'site_name' => 'required' ]);