Skip to content

Commit 58d12a8

Browse files
committed
Simply return login failed instead of min 8 char validation
1 parent 37e1502 commit 58d12a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Http/Controllers/Auth/AuthController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ public function postLogin(Request $request)
130130
{
131131
$this->validate($request, [
132132
'email' => 'required|email',
133-
'password' => 'required|min:8',
133+
'password' => 'required',
134134
]);
135135

136136
$credentials = $request->only('email', 'password');

0 commit comments

Comments
 (0)