2024-12-17 15:11:45 +00:00

16 lines
273 B
PHP

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