@extends('_layout.main') @section('content') @include('components.page-indicator', [ 'page' => 'Lihat Pengguna', 'path' => ['Admin', 'Lihat Pengguna'], ])

Profil Pengguna

@if ($usera->status == 'actived') @else @endif
@csrf @include('components.input', [ 'label' => 'Nama Pengguna', 'name' => 'user[username]', 'value' => @$usera->username, ]) @include('components.input', [ 'label' => 'Refferals', 'name' => 'refferal', 'value' => @$usera->username, ]) @include('components.input', [ 'label' => 'Nama Lengkap', 'name' => 'user[name]', 'value' => @$usera->name, ]) @include('components.input', [ 'label' => 'Alamat', 'name' => 'profile[address]', 'value' => @$usera->profile[0]->address, ]) @include('components.input', [ 'label' => 'Negara', 'name' => 'user[country]', 'value' => @$usera->country, ]) @include('components.input', [ 'label' => 'Alamat Email', 'name' => 'user[email]', 'value' => @$usera->email, ])
@include('components.input', [ 'label' => 'Alamat Bitcoin', 'name' => 'profile[bitcoinAddress]', 'value' => @$usera->profile[0]->bitcoinAddress, ]) @include('components.input', [ 'label' => 'Bank', 'name' => 'profile[bank]', 'value' => @$usera->profile[0]->bank, ])

Update Password

@csrf

Tambahkan Saldo Pengguna

@method('PUT') @csrf @include('components.input-icon', [ 'label' => 'Saldo Saat Ini', 'icon' => 'RP', 'readonly' => true, 'name' => 'currentBalance', 'value' => @$usera->profile[0]->balance, ])
@include('components.input-icon', [ 'label' => 'Tambah Saldo', 'icon' => 'RP', 'name' => 'balance', ])
Kartu Identitas
@if (!@$usera->profile[0]->identityCard)
unverified

Pengguna belum mengunggah

@else @endif
Foto Close Up
@if (!@$usera->profile[0]->closeUpPhoto)
unverified

Pengguna belum mengunggah

@else @endif
@csrf @method('PUT')
@csrf @method('PUT')
@endsection