add.ctp 341 Bytes

<div class="organismes form large-9 medium-8 columns content">
    <?= $this->Form->create($organisme) ?>
    <fieldset>
        <legend><?= __('Add Organisme') ?></legend>
        <?php
            echo $this->Form->input('nom');
        ?>
    </fieldset>
    <?= $this->Form->button(__('Submit')) ?>
    <?= $this->Form->end() ?>
</div>