Form facade is not works for me
indapublic opened this issue · 0 comments
indapublic commented
I have an idea move from Blade to Twig in my project. Don't want rework many things so I want to use facades in Twig
'extensions' => [
'enabled' => [
'TwigBridge\Extension\Loader\Facades',
'TwigBridge\Extension\Loader\Filters',
'TwigBridge\Extension\Loader\Functions',
'TwigBridge\Extension\Laravel\Form',
],
'facades' => [
'Auth' => ['is_safe' => false],
'Form' => ['is_safe' => true],
'URL' => ['is_safe' => true],
'Lang' => ['is_safe' => true],
],
But
{{ Form.open() }}
outputs nothing.
What I missing?