mirror of
https://github.com/getformwork/formwork.git
synced 2025-02-21 08:02:36 +01:00
15 lines
639 B
PHP
15 lines
639 B
PHP
<?php $this->layout('panel') ?>
|
|
|
|
<form method="post" class="options-form" data-form="system-options-form">
|
|
<div class="header">
|
|
<div class="header-title"><?= $this->translate('panel.options.options') ?></div>
|
|
<div>
|
|
<button type="submit" class="button button-accent button-right" data-command="save"><?= $this->icon('check-circle') ?> <?= $this->translate('panel.modal.action.save') ?></button>
|
|
<input type="hidden" name="csrf-token" value="<?= $csrfToken ?>">
|
|
</div>
|
|
</div>
|
|
<?= $tabs ?>
|
|
<div>
|
|
<?php $this->insert('fields', ['fields' => $fields]) ?>
|
|
</div>
|
|
</form>
|