@extends('layout.layout') @php $title = 'Verifikasi Pendaftaran'; $subTitle = 'Detail Pendaftaran Baru'; $wargaBaseUrl = rtrim(config('app.warga_url', 'http://127.0.0.1:8000'), '/'); @endphp @section('content')
{{-- KOLOM KIRI - INFO PROFIL --}}
{{ $user->name }}
{{ $user->email }}
Personal Info
  • Full Name : {{ $user->name }}
  • Email : {{ $user->email }}
  • Phone : {{ $user->profile->phone_number ?? '-' }}
  • Address : {{ $user->profile->address ?? '-' }}
  • KTP : @if($user->profile->ktp) Lihat KTP @else - @endif
  • Selfie : @if($user->profile->foto) Lihat Foto @else - @endif
  • Lokasi GPS : @if($user->profile->latitude && $user->profile->longitude) Buka Maps @else - @endif
  • ID Meteran : @if($user->meteran) {{ $user->meteran->nomor_seri }} @else Belum dipasang @endif
  • @if($user->meteran)
  • Tgl Pasang : {{ $user->meteran->tanggal_pasang?->translatedFormat('d M Y') ?? '-' }}
  • @endif
  • Status : {{ ucfirst($user->status) }}
  • Joined Date : {{ $user->created_at->translatedFormat('d M Y') }}
{{-- KOLOM KANAN - FORM EDIT --}}
@csrf @method('PUT')
Email tidak dapat diubah.
Cancel
@endsection