Blame view

src/Template/Fournisseurs/add.ctp 476 Bytes
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

<div class="fournisseurs form">
    <?= $this->Form->create($fournisseur) ?>
    <fieldset>
        <h2><i class="icon-plus"></i> Ajouter un fournisseur</h2>
        <?php
            echo $this->Form->input('nom');
        ?>
    </fieldset>
    <?= $this->Form->submit(__('Valider')) ?>
    <?= $this->Form->end() ?>
</div>

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