mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-13 01:35:47 +00:00
13 lines
284 B
PHP
13 lines
284 B
PHP
![]() |
<?= $this->extend('admin/_layout') ?>
|
||
|
|
||
|
<?= $this->section('title') ?>
|
||
|
<?= lang('User.view', ['username' => $user->username]) ?>
|
||
|
<?= $this->endSection() ?>
|
||
|
|
||
|
|
||
|
<?= $this->section('content') ?>
|
||
|
|
||
|
<?= view('admin/_partials/_user_info.php', ['user' => $user]) ?>
|
||
|
|
||
|
<?= $this->endSection() ?>
|