18 lines
644 B
PHP
18 lines
644 B
PHP
@extends('layouts.app')
|
|
@section('title', 'Chi tiết User')
|
|
|
|
@section('content')
|
|
<div class="mb-6 flex flex-col sm:flex-row sm:items-center sm:justify-between gap-4 pl-1">
|
|
<div>
|
|
<h1 class="text-[28px] font-extrabold text-[#1a2b49] flex items-center gap-2 mb-1.5 tracking-tight">
|
|
Chi tiết User
|
|
</h1>
|
|
<p class="text-gray-500 font-medium text-[14px]">
|
|
Quản lý thông tin thẻ và theo dõi lịch sử nhận gửi của nhân viên.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<x-user-page mode="edit" :user="$user" :administrations="$administrations" :selectedMonth="$selectedMonth" />
|
|
@endsection
|