make(LoginService::class); $user = auth()->user() ?? $loginService->getLastLoginAttemptUser(); if (!$user) { throw new NotFoundException(trans('errors.login_user_not_found')); } return $user; } }