add.ctp 491 Bytes

<div class="typeDocuments form">
    <?= $this->Form->create($typeDocument) ?>
    <fieldset>
		<h2>
			<i class="icon-plus"></i> Ajouter un type de document
		</h2>
        <?php
        echo $this->Form->control('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>
-->