@extends('user.layout') @section('content')

{{ __('Customer_Details') }}

{{ __('Username') }}:
{{ $user->username ?? '-' }}
{{ __('First_Name') }}:
{{ $user->first_name ?? '-' }}
{{ __('Last_Name') }}:
{{ $user->last_name ?? '-' }}
{{ __('Email') }} :
{{ $user->email ?? '-' }}
{{ __('Number') }} :
{{ $user->phone ?? '-' }}
{{ __('City') }}:
{{ $user->city ?? '-' }}
{{ __('State') }}:
{{ $user->state ?? '-' }}
{{ __('Country') }}:
{{ $user->country }}
{{ __('Address') }}:
{{ $user->address }}
{{ __('Email_Status') }}:
@csrf
{{ __('Account_Status') }}:
@csrf
@endsection @section('scripts') @endsection