add.ctp 602 Bytes

<div class="groupesThematiques form">
    <?= $this->Form->create($groupesThematique) ?>
    <fieldset>
		<h2>
			<i class="icon-plus"></i> Ajouter un <?= $configuration->nom_groupe_thematique ?></h2>
        <?php
        echo $this->Form->control('nom');
        echo $this->Form->control('description');
        ?>
    </fieldset>
    <?= $this->Form->submit(__('Valider')) ?>
    <?= $this->Form->end() ?>
</div>

<!--
<div class="actions">
	<php
echo $this->element('menu');
echo $this->element('menu_form', [
    'pluralHumanName' => $configuration->nom_groupe_thematique . 's'
]);
?>
</div>
-->