@extends('backend.app') @section('title') {{ env('APP_NAME') }} || Profile @endsection @push('styles') @endpush @section('content')
Image
@if ($user->status) Image @endif

{{ $user->first_name ?? 'N/A' }} {{ $user->last_name ?? 'N/A' }}

@i{{ $user->handle ?? 'N/A' }}

{{-- Edit Profile --}}
{{-- content --}}

About Me

Email

{{ $user->email }}

Phone

{{ $user->profile->phone ?? 'N/A' }}

Date of Birth

{{ $user->profile->date_of_birth ?? 'N/A' }}

Gender

{{ $user->profile->gender ?? 'N/A' }}

Role

{{ $user->role->name ?? 'N/A' }}

Stripe Customer ID

{{ $user->role->stripe_customer_id ?? 'N/A' }}

Created At

{{ $user->role->created_at ? $user->role->created_at . ' (' . $user->role->created_at->diffForHumans() . ')' : 'N/A' }}

Last Updated AT

{{ $user->role->updated_at ? $user->role->updated_at . ' (' . $user->role->updated_at->diffForHumans() . ')' : 'N/A' }}

Properties

{{-- {{ $properties->links() }} --}}
@endsection @push('scripts') @endpush