@extends('_layout.main') @section('content') @include('components.page-indicator', [ 'page' => 'Kenali Pelanggan Anda (KNC)', 'path' => ['Beranda', 'Kenali Pelanggan Anda (KNC)'], ])

Profil

@if ($user->status == 'pending')

Proses Aktivasi

@elseif ($user->status == 'actived')

Aktivasi Berhasil

@else

Silakan lengkapi formulir verifikasi di bawah ini dan kirimkan untuk mendapatkan akses penuh ke akun Anda.

@csrf @method('PUT')
@include('components.input-icon', [ 'label' => 'ID Pengguna', 'name' => 'name', 'value' => $user->name, 'icon' => '', ])
@include('components.input-icon', [ 'label' => 'Kata Sandi', 'name' => 'password', 'icon' => '', ])

Unggah Kartu Identitas

Foto Close Up

@if ($user->status == 'noactived') @endif

Unggah hanya file jpg, png, gif. Ukuran maksimum unggah 1 MB.

@endif

Profil

@if ($user->status == 'actived') @include('components.verified', [ 'label' => 'Akun sudah aktif', 'description' => 'Anda telah mengaktifkan akun Anda', ]) @else @include('components.unverified', ['label' => '']) @endif
@endsection