@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(); $tab = request()->tab; if(!$tab) $tab = session('tab'); $infoActive = $tab != 'send-mail' ? 'active show': ''; $accountActive = $infoActive ? '' : 'active show'; @endphp @extends($_layout.'master') @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"}}
@if ($user->status < 0)

Người dùng này hiện đã bị khóa.

Mở khóa @else

Nếu muốn khóa người dùng này hạy nhấn nút bên dưới.

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