mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-11 18:56:42 +02:00
15 lines
273 B
PHP
15 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() ?>
|