Blame view

src/Template/SurCategories/add.ctp 349 Bytes
64fba1a2   Alexandre   Base du projet : ...
1

6c4edfa3   Alexandre   First Commit LabI...
2
3
4
5
6
7
8
9
10
11
12
<div class="surCategories form large-9 medium-8 columns content">
    <?= $this->Form->create($surCategory) ?>
    <fieldset>
        <legend><?= __('Add Sur Category') ?></legend>
        <?php
            echo $this->Form->input('nom');
        ?>
    </fieldset>
    <?= $this->Form->button(__('Submit')) ?>
    <?= $this->Form->end() ?>
</div>