@isset($proposedCustomer)
@if($currentStep == '2')
@endif @if($currentStep == '1')

@php $tr = resolve('App\Models\Transaction')::where($data_change_field->fields,$proposedCustomer->id) ->where('id',$transactionId) ->first(); @endphp Selected Customer (@if($tr)Primary @endif{{$data_change_field->name}})

@endif
@if($proposedCustomer->customer_type=="Personal") @else @endif @if($proposedCustomer->customer_type=="Personal") @endif @if (isset($proposedCustomer->file_path) && Storage::disk('local')->exists($proposedCustomer->file_path)) @else @endif
@lang('customer.customer_reference_no') {{$proposedCustomer->id}}
@lang("customer.customer_name") {{ strtoupper($proposedCustomer->full_name) }}
@lang('customer.business_name')

{{$proposedCustomer->business_name}}

@lang('customer.phone_carrier') {{$proposedCustomer->phone_carrier}} {{ isset($proposedCustomer->phone_carrier2) ? '/ '. $proposedCustomer->phone_carrier2 : ''}}
@lang('customer.contact_number') {{$proposedCustomer->mobile_1}} {{ isset($proposedCustomer->mobile_2) ? '/ '. $proposedCustomer->mobile_2 : ''}}
@lang('customer.gender') {{$proposedCustomer->gender}}
@lang('customer.date_of_birth') @if($proposedCustomer->date_of_birth) {{Carbon\Carbon::parse($proposedCustomer->date_of_birth)->format('d-m-Y')}} @endif
@lang('customer.place_of_birth') {{$proposedCustomer->place_of_birth}}
@lang('mof.region') {{$proposedCustomer->region}}
@lang('customer.district-subdistrict') @if($proposedCustomer->city) {{$proposedCustomer->city}} @else Nil @endif - @if($proposedCustomer->district) {{$proposedCustomer->district}} @else Nil @endif - @if($proposedCustomer->sub_division) {{$proposedCustomer->sub_division}} @else Nil @endif - @if($proposedCustomer->area){{$proposedCustomer->area}} @else Nil @endif - @if($proposedCustomer->block){{$proposedCustomer->block}} @else Nil @endif
@lang('customer.last_updated') {{ $proposedCustomer->created_at->diffForHumans() }}
@lang('customer.uploaded_photo') Not Found No Photos Uploaded
@endisset