2021-09-02 16:34:25 +00:00
|
|
|
<?= $this->extend('_layout') ?>
|
2020-07-10 12:20:25 +00:00
|
|
|
|
2020-07-16 10:08:23 +00:00
|
|
|
<?= $this->section('title') ?>
|
|
|
|
<?= lang('MyAccount.info') ?>
|
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
2020-10-13 16:16:45 +00:00
|
|
|
<?= $this->section('pageTitle') ?>
|
|
|
|
<?= lang('MyAccount.info') ?>
|
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
2020-07-16 10:08:23 +00:00
|
|
|
|
2020-07-10 12:20:25 +00:00
|
|
|
<?= $this->section('content') ?>
|
|
|
|
|
2021-09-08 15:51:33 +00:00
|
|
|
<?= view('_partials/_user_info.php', [
|
|
|
|
'user' => user(),
|
|
|
|
]) ?>
|
2020-07-10 12:20:25 +00:00
|
|
|
|
2020-10-22 17:41:59 +00:00
|
|
|
<?= $this->endSection() ?>
|