edit.ctp 444 Bytes

<div class="sites form">
    <?= $this->Form->create($site) ?>
    <fieldset>
		<h2>
			<i class="icon-edit"></i> Editer un Site
		</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' => 'Sites'
]);
?>
</div>