add.ctp
465 Bytes
<div class="organismes form">
<?= $this->Form->create($organisme) ?>
<fieldset>
<h2>
<i class="icon-plus"></i> Ajouter un Organisme
</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' => 'Organismes'
]);
?>
</div>