add.ctp
418 Bytes
<div class="groupesThematiques form large-9 medium-8 columns content">
<?= $this->Form->create($groupesThematique) ?>
<fieldset>
<legend><?= __('Add Groupes Thematique') ?></legend>
<?php
echo $this->Form->input('nom');
echo $this->Form->input('description');
?>
</fieldset>
<?= $this->Form->button(__('Submit')) ?>
<?= $this->Form->end() ?>
</div>