15 lines
520 B
PHP
15 lines
520 B
PHP
<div class="page-header">
|
|
<h2><?= t('Edit group') ?></h2>
|
|
</div>
|
|
<form method="post" action="<?= $this->url->href('GroupModificationController', 'save') ?>" autocomplete="off">
|
|
<?= $this->form->csrf() ?>
|
|
|
|
<?= $this->form->hidden('id', $values) ?>
|
|
<?= $this->form->hidden('external_id', $values) ?>
|
|
|
|
<?= $this->form->label(t('Name'), 'name') ?>
|
|
<?= $this->form->text('name', $values, $errors, array('autofocus', 'required', 'maxlength="255"')) ?>
|
|
|
|
<?= $this->modal->submitButtons() ?>
|
|
</form>
|