{{ html_decode($user->name) }}

@if ($user->phone)

{{ html_decode($user->phone) }}

@endif

{{ html_decode($user->email) }}

{{ __('Joined') }} : {{ formattedDateTime($user->created_at) }}

@if ($user->is_banned == 'yes')

{{ __('Banned') }} : {{ __('Yes') }}

@else

{{ __('Banned') }} : {{ __('No') }}

@endif @if ($user->email_verified_at)

{{ __('Email verified') }} : {{ __('Yes') }}

@else

{{ __('Email verified') }} : {{ __('None') }}

@adminCan('customer.update') @endadminCan @endif @adminCan('customer.update') @if ($user->is_banned == 'yes') @else @endif @endadminCan @adminCan('customer.delete') {{__('Delete Account')}} @endadminCan
{{-- profile information card area --}}
@csrf @method('PUT')
@foreach ($countries as $country) @endforeach
@adminCan('customer.update')
@endadminCan
{{-- change password card area --}}
@csrf @method('PUT')
@adminCan('customer.update')
@endadminCan
{{-- banned history card area --}}
@foreach ($banned_histories as $banned_history) @endforeach
{{ __('Subject') }} {{ __('Description') }}
{{ $banned_history->subject }} {!! nl2br($banned_history->description) !!}