17 lines
378 B
PHP
Raw Normal View History

<?= $this->extend('Modules\Admin\Views\_layout') ?>
<?= $this->section('title') ?>
<?= lang('MyAccount.info') ?>
<?= $this->endSection() ?>
<?= $this->section('pageTitle') ?>
<?= lang('MyAccount.info') ?>
<?= $this->endSection() ?>
<?= $this->section('content') ?>
<?= view('Modules\Admin\Views\_partials/_user_info.php', ['user' => user()]) ?>
<?= $this->endSection() ?>