I have Symfony\Component\Form\FormView object. How do I render it without Twig and framework?
Specifically I want to use Symfony Form in Concrete5 custom block type.
I have Symfony\Component\Form\FormView object. How do I render it without Twig and framework?
Specifically I want to use Symfony Form in Concrete5 custom block type.
© 2022 - 2024 — McMap. All rights reserved.
FormRenderer
implementing\Symfony\Component\Form\FormRendererInterface
. You will also need aFormRenderingEngine
based on\Symfony\Component\Form\FormRendererEngineInterface
. See existing ones for Twig for reference. – Sibyls