@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