Cakephp 在细枝模板中使用FormHelper

Cakephp 在细枝模板中使用FormHelper,cakephp,twig,Cakephp,Twig,我正在使用cakePhp框架进行一个类项目,我从ctp视图迁移到了twig视图,但是我在将登录表单转换为“login.twig”视图时遇到了一个问题,我不知道如何显示它 login.ctp文件如下所示: <div class="users form"> <?= $this->Form->create() ?> <fieldset> <legend><?= __("Merci de rentrer vos nom d'

我正在使用cakePhp框架进行一个类项目,我从ctp视图迁移到了twig视图,但是我在将登录表单转换为“login.twig”视图时遇到了一个问题,我不知道如何显示它

login.ctp文件如下所示:

<div class="users form">

<?= $this->Form->create() ?>
  <fieldset>
    <legend><?= __("Merci de rentrer vos nom d'utilisateur et mot de passe")          ?></legend>
    <?= $this->Form->input('username') ?>
    <?= $this->Form->input('password') ?>
  </fieldset>
<?= $this->Form->button(__('Se Connecter')); ?>
<?= $this->Form->end() ?>
</div>


如何使用twig做同样的事情?

您使用的是什么版本的CakePHP?据我所知,您应该在twig模板中编写
{{{$this->Form->create()}
而不是