@php $request = request(); $per_page = $request->per_page; $per_pages = [""=>"KQ / trang", 10 => 10, 25 => 25,50 => 50, 100 => 100, 200 => 200, 500 => 500, 1000 => 1000]; // $profile = getUser(); $activeClass = function($tab){ static $t = null; if(!$t){ $t = request()->tab; if(!$t) $t = session('tab'); if(!$t) $t = "user-balance"; } return $t == $tab ? 'active show' : ''; }; @endphp @extends($_layout.'admin') @section('title', 'Trang cá nhân') @section('show_sidebar', 1) @section('content') @if ($user)
{{-- @csrf --}}
{{$email?$email:"Không được bỏ trống"}}
{{$subject?$subject:"Không được bỏ trống"}}
{{$message?$message:"Không được bỏ trống"}}
Reset 2-FA @if ($user->status < 0) Mở khóa @else Khóa @endif
@include($_template.'profile-card', [ 'profile' => $user ])
@else
Người dùng không tồn tại
@endif @endsection @section('js') {{-- --}} @endsection