castopod/themes/cp_admin/my_account/view.php

20 lines
362 B
PHP

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