@extends('backend.layouts.master') @section('title') {{ __('Investor Details - Admin Panel') }} @endsection @section('admin-content')
@include('backend.layouts.partials.logout')

{{ __('Investor Full Details') }}

Investor ID {{ $investor->referral_id ?? '—' }}
Name {{ trim(($investor->first_name ?? '') . ' ' . ($investor->middle_name ?? '') . ' ' . ($investor->last_name ?? '')) ?: '—' }}
Father Name {{ $investor->father_name ?? '—' }}
Mobile {{ $investor->mobile ?? '—' }}
Email {{ $investor->email ?? '—' }}
Address {{ $investor->address ?? '—' }}
Country {{ optional($investor->country)->name ?? '—' }}
State {{ optional($investor->state)->name ?? '—' }}
City {{ $investor->city ?? '—' }}
Company Name {{ $investor->company_name ?? '—' }}
GST {{ $investor->company_gst ?? '—' }}
Education {{ $investor->education_qualification ?? '—' }}
Nominee {{ $investor->nominee_name ?? '—' }} @if(!empty($investor->nominee_relationship)) ({{ $investor->nominee_relationship }}) @endif @if(!empty($investor->nominee_contact)) - {{ $investor->nominee_contact }} @endif
Bank Details @if($investor->bank_name || $investor->account_number) {{ $investor->bank_name ?? '' }} - {{ $investor->bank_branch ?? '' }}
A/C: {{ $investor->account_number ?? '' }}
IFSC: {{ $investor->ifsc_code ?? '' }}
Type: {{ $investor->account_type ?? '' }} @else — @endif
PAN {{ $investor->pan ?? '—' }}
Aadhaar {{ $investor->aadhar_number ?? '—' }}
Added By Name: {{ $investor->added_by_name ?? '—' }}
Email: {{ $investor->added_by_email ?? '—' }}
Personal ID: {{ $investor->added_by_personal_id ?? '—' }}
Status @if ($investor->status === 'Unverified') Unverified @else Verified @endif
KYC Status @if ($investor->kyc_status === 'KYC pending') KYC pending @else KYC updated @endif
Back @if ($investor->status === 'Unverified') Approve @endif
@endsection