@extends('layouts.master') @section('title') @lang('translation.verify-user') @endsection @section('css') @endsection @section('content') @component('components.breadcrumb') @slot('li_1') @lang('translation.user') @endslot @slot('title') @lang('translation.verify') @endslot @endcomponent @include('partials.session')

Personal Information

@if($user->email_verified_at == null) @endif
@if(auth()->user()->hasRole(App\Models\User::SuperAdmin))
@endif
Verification Documents
       Selfie : @if($user->detail && $user->detail->selfie) Preview @else File not available @endif
       ID Card (Front) : @if($user->detail && $user->detail->idCardFront) Preview @else File not available @endif
       ID Card (Back) : @if($user->detail && $user->detail->idCardBack) Preview @else File not available @endif
@if ($user->account_verification == 'Under Review' || $user->account_verification == 'Suspended')
@csrf

Verification Details

@error('id_number')
{{ $message }}
@enderror
@error('state')
{{ $message }}
@enderror
@error('date_of_birth')
{{ $message }}
@enderror
@error('id_card_expire')
{{ $message }}
@enderror
@endif
@endsection @section('script') @endsection