| 
					
				 | 
			
			
				@@ -11,6 +11,7 @@ use Symfony\Component\Security\Core\Security; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 use Symfony\Component\Security\Core\User\UserInterface; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 use Symfony\Component\Security\Http\Authenticator\AbstractLoginFormAuthenticator; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 use Symfony\Component\Security\Http\Authenticator\Passport\Badge\CsrfTokenBadge; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+use Symfony\Component\Security\Http\Authenticator\Passport\Badge\RememberMeBadge; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 use Symfony\Component\Security\Http\Authenticator\Passport\Badge\UserBadge; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 use Symfony\Component\Security\Http\Authenticator\Passport\Credentials\PasswordCredentials; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 use Symfony\Component\Security\Http\Authenticator\Passport\Passport; 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -55,6 +56,7 @@ class LoginFormAuthenticator extends AbstractLoginFormAuthenticator 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             new PasswordCredentials($request->request->get('password', '')), 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             [ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 new CsrfTokenBadge('authenticate', $request->get('_csrf_token')), 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                new RememberMeBadge(), 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             ] 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         ); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     } 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -80,4 +82,9 @@ class LoginFormAuthenticator extends AbstractLoginFormAuthenticator 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         return $this->urlGenerator->generate(self::LOGIN_ROUTE); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    public function supportsRememberMe(): bool 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        return true; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 } 
			 |