14 lines
426 B
PHTML
14 lines
426 B
PHTML
<?= $this->tabs->render($this); ?>
|
|
|
|
<h4>{{CREATE_ICON}} Edit Backend "<?= $this->escape($this->name); ?>"</h4>
|
|
|
|
<?php if ($this->errorMessage || $this->form->getErrorMessages()): ?>
|
|
<div class="alert alert-danger">
|
|
<?= $this->escape($this->errorMessage); ?>
|
|
<?php foreach ($this->form->getErrorMessages() as $error): ?>
|
|
<?= $this->escape($error); ?><br/>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?= $this->form ?> |