@extends('layouts.app') @php $breadcrumbItems = [ ['label' => 'Trang cá nhân', 'url' => ''], ['label' => 'Xem trang cá nhân'] ]; @endphp @push('css') @endpush @section('content') @include('layouts.header')
profile_image
{{ auth()->user()->full_name ?? 'Tên người dùng' }}
@include('components.alert')
@csrf @method('PUT')

Thông tin người dùng

Thông tin liên hệ

Thông tin đăng nhập

background
avatar
{{ auth()->user()->full_name ?? 'Tên người dùng' }}

{{ auth()->user()->email ?? 'example@example.com' }}


Ngày sinh: {{ auth()->user()->date_of_birth ? \Carbon\Carbon::parse(auth()->user()->date_of_birth)->format('d/m/Y') : 'Chưa cập nhật' }}
Tuổi: @if (auth()->user()->date_of_birth) {{ \Carbon\Carbon::now()->year - \Carbon\Carbon::parse(auth()->user()->date_of_birth)->year }} @else Chưa cập nhật @endif
Giới tính: @if (auth()->user()->gender === 1) Nam male @elseif (auth()->user()->gender === 0) female Nữ @else Chưa cập nhật @endif
Số điện thoại: {{ auth()->user()->phone ?? 'Chưa cập nhật' }}
Địa chỉ: {{ auth()->user()->address ?? 'Chưa cập nhật' }}
@endsection @push('js') @endpush