@extends('layouts.layout-admin') @section('style') @endsection @section('content')

{{ __('View Customer') }}

{{-- --}} User profile picture

{{ $customerInfo->user_name }}

{{ $customerInfo->company_name }}

  • {{ __('Total Orders') }} 1,322
  • {{ __('Total Customers') }} 543

{{ __('Customer Info') }}

{{ __('Name') }} {{ $customerInfo->user_name }}
{{ __('Email') }} {{ $customerInfo->email }}
{{ __('Address Line 1') }} {{ $customerInfo->address_line_1 }}
{{ __('Address Line 2') }} {{ $customerInfo->address_line_2 }}
{{ __('City') }} {{ $customerInfo->city }}
{{ __('Postal Code') }} {{ $customerInfo->postal_code }}
{{ __('State') }} {{ $customerInfo->state }}
{{ __('Country') }} {{ $customerInfo->country }}
{{ __('Phone') }} {{ $customerInfo->phone }}
{{ __('Company Name') }} {{ $customerInfo->company_name }}
{{ __('Status') }} {{ $status[$customerInfo->status] }}
@endsection @section('scripts') @endsection