<?phpnamespace App\Controller;use App\Form\DevisType;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;class HomeController extends AbstractController{ /** * @Route("/home", name="home") */ public function index(): Response { $form = $this->createForm(DevisType::class); return $this->render('home/index.html.twig', [ 'form'=>$form->createView() ]); }}