@extends('layouts.client') @section('title') {{ Auth::user()->ho_ten }} - {{$title}} @endsection @section('content-clients')
@include('clients.blocks.categoriesUser')
Thông tin tài khoản
  • Họ tên: {{ Auth::user()->ho_ten }}
  • Điện thoại: {{ Auth::user()->so_dien_thoai }}
  • Email: {{ Auth::user()->email }} {{-- {{dd(Auth::user()->email_verified_at)}} --}} @if(Auth::user()->email_verified_at == null)
    @csrf
    @else Đã xác thực @endif
  • Ngày sinh: @if(Auth::user()->ngay_sinh == "") Chưa có thông tin @else {{\Carbon\Carbon::parse(Auth::user()->ngay_sinh)->format('d-m-Y')}} @endif
  • Giới tính: @if(Auth::user()->gioi_tinh == "") Chưa có thông tin @else @if(Auth::user()->gioi_tinh == 1) Nam @elseif(Auth::user()->gioi_tinh == 0) Nữ @else Khác @endif @endif
Cập nhật thông tin
@endsection @section('stylesheetAccount') @endsection