@extends('backend.app') @section('title') {{ env('APP_NAME') }} || Profile @endsection @push('styles') @endpush @section('content')
@i{{ $user->handle ?? 'N/A' }}
{{ $user->email }}
{{ $user->profile->phone ?? 'N/A' }}
{{ $user->profile->date_of_birth ?? 'N/A' }}
{{ $user->profile->gender ?? 'N/A' }}
{{ $user->role->name ?? 'N/A' }}
{{ $user->role->stripe_customer_id ?? 'N/A' }}
{{ $user->role->created_at ? $user->role->created_at . ' (' . $user->role->created_at->diffForHumans() . ')' : 'N/A' }}
{{ $user->role->updated_at ? $user->role->updated_at . ' (' . $user->role->updated_at->diffForHumans() . ')' : 'N/A' }}