helper = $helper; } /** * Show a login form. */ #[\Symfony\Component\Routing\Attribute\Route(path: '/login', name: 'login')] public function loginAction(Request $request): Response { return $this->render('@ChillMain/Login/login.html.twig', [ 'last_username' => $this->helper->getLastUsername(), 'error' => $this->helper->getLastAuthenticationError(), ]); } public function LoginCheckAction(Request $request) {} }