@extends('dashboard.layouts.app') @section('title', __('dashboard.View User')) @section('page_heading', __('dashboard.View User')) @section('breadcrumb') @endsection @section('content')

{{ __('dashboard.User Details') }}

ID {{ $user->id }}
{{ __('dashboard.Avatar') }} @if($user->avatar) {{ $user->name }} @else - @endif
{{ __('dashboard.First Name') }} {{ $user->first_name }}
{{ __('dashboard.Last Name') }} {{ $user->last_name ?? '-' }}
{{ __('dashboard.Email') }} {{ $user->email ?? '-' }}
{{ __('dashboard.Account Type') }} {{ __('dashboard.' . Str::studly(str_replace('_', ' ', $user->account_type))) }}
{{ __('dashboard.Phone') }} {{ $user->phone ?? '-' }}
{{ __('dashboard.Country') }} {{ $user->country ? __('countries.' . $user->country) : '-' }}
{{ __('dashboard.Preferred Currency') }} {{ $user->preferred_currency ?? '-' }}
{{__('dashboard.Language')}} {{ __('language.'.$user->language) }}
{{__('dashboard.Is Verified')}} @if($user->is_verified) {{__('dashboard.Yes')}} @else {{__('dashboard.No')}} @endif
{{ __('dashboard.Created At') }} {{ $user->created_at }}
@endsection