now maximum password length is extended to 64
This commit is contained in:
parent
c628a3da3e
commit
294b008880
|
|
@ -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');
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user