edit.ctp
485 Bytes
<div class="typeDocuments form">
<?= $this->Form->create($typeDocument) ?>
<fieldset>
<h2><i class="icon-edit"></i> Editer un type de document</h2>
<?php
echo $this->Form->input('nom');
?>
</fieldset>
<?= $this->Form->submit(__('Valider')) ?>
<?= $this->Form->end() ?>
</div>
<div class="actions">
<?php
echo $this->element('menu');
echo $this->element('menu_form', [ 'pluralHumanName' => 'Types Documents' ]);
?>
</div>