blessing-skin-server/resources/views/user/profile.blade.php

30 lines
765 B
PHP

@extends('user.master')
@section('title', trans('general.profile'))
@section('content')
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
@lang('general.profile')
</h1>
</section>
<!-- Main content -->
<section class="content"></section><!-- /.content -->
</div><!-- /.content-wrapper -->
<script>
Object.defineProperty(window, '__bs_data__', {
value: Object.freeze({
admin: {{ (string) $user->isAdmin() ?: 'false' }},
unverified: {{ option('require_verification') && !$user->verified ? 'true' : 'false' }}
}),
writable: false
})
</script>
@endsection