@extends('main') @section('title', 'Detail Customer | Page') @section('content')
{{-- Foto Profil --}}

@if (!empty($customer->profile_picture)) {{-- Tampilkan foto profil jika ada --}} Profile Photo @else {{-- Tampilkan gambar default jika tidak ada --}} Default Avatar

No profile photo

@endif
{{-- Informasi Dasar --}}
{{-- Foto KTP --}}

@if (!empty($customer->ktp_photo)) KTP Photo @else

Belum ada foto KTP

@endif
{{-- Foto NPWP --}}

@if (!empty($customer->npwp_photo)) NPWP Photo @else

Belum ada foto NPWP

@endif
Back @if($customer->status == 'pending')
@csrf @method('PATCH')
@endif
{{-- Modal Zoom profile --}} {{-- Modal Zoom KTP --}} {{-- Modal Zoom NPWP --}} @endsection