<?phpnamespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;class AccueilController extends AbstractController{ #[Route('/', name: 'app_form_index', methods: ['GET', 'POST'])] public function index(): Response { return $this->render('front/form/index.html.twig'); }}