14 lines
324 B
PHTML
14 lines
324 B
PHTML
<?= $this->tabs->render($this); ?>
|
|
<?php if ($this->name): ?>
|
|
<h4>Edit backend <?= $this->escape($this->name) ?></h4>
|
|
<?php else: ?>
|
|
<h4>Create new backend</h4>
|
|
<?php endif; ?>
|
|
|
|
<?php if ($this->error): ?>
|
|
<div class="alert alert-danger">
|
|
<?= $this->escape($this->error); ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?= $this->form; ?> |