26 lines
785 B
HTML
26 lines
785 B
HTML
<?php Block::put('breadcrumb') ?>
|
|
<ul>
|
|
<li><a href="<?= Backend::url('janvince/smallcontactform/messages') ?>"><?= e(trans('janvince.smallcontactform::lang.controllers.messages.list_title')) ?></a></li>
|
|
<li><?= e(trans($this->pageTitle)) ?></li>
|
|
</ul>
|
|
<?php Block::endPut() ?>
|
|
|
|
<?= Form::open(['class' => 'layout']) ?>
|
|
|
|
<div class="layout-row">
|
|
<?= $this->exportRender() ?>
|
|
</div>
|
|
|
|
<div class="form-buttons">
|
|
<button
|
|
type="submit"
|
|
data-control="popup"
|
|
data-handler="onExportLoadForm"
|
|
data-keyboard="false"
|
|
class="btn btn-primary">
|
|
<?= e(trans('janvince.smallcontactform::lang.controllers.messages.export')) ?>
|
|
</button>
|
|
</div>
|
|
|
|
<?= Form::close() ?>
|