getLastAuthenticationError(); // last username entered by the user $lastUsername = $authenticationUtils->getLastUsername(); return $this->render('security/login.html.twig', [ 'controller_name' => 'LoginController', 'last_username' => $lastUsername, 'error' => $error ]); } public function logoutAction(): void { // controller can be blank: it will never be called! throw new \Exception('Don\'t forget to activate logout in security.yaml'); } public function loginCheckAction(): Response { } }