class ResetPasswordController extends Controller
{
- protected LoginService $loginService;
-
- public function __construct(LoginService $loginService)
- {
+ public function __construct(
+ protected LoginService $loginService
+ ) {
$this->middleware('guest');
$this->middleware('guard:standard');
-
- $this->loginService = $loginService;
}
/**