This commit is contained in:
2024-09-17 13:13:36 +05:00
parent 3091e220bb
commit e95797bb97
2 changed files with 1 additions and 2 deletions

View File

@@ -37,7 +37,7 @@ class ApiAuthController extends Controller
if (! $user || ! Hash::check($request->password, $user->password)) {
throw ValidationException::withMessages([
'email' => ['The provided credentials are incorrect.'],
'incorrect' => ['The provided credentials are incorrect.'],
]);
}

View File

@@ -17,7 +17,6 @@ class AuthLoginRequest extends FormRequest
/**
* Phone number to authenticate
*
* @var int
* @example 65707012
*/
'phone' => ['required', 'integer', 'between:61000000,71999999'],