@extends('admin.template.layout') @section('content')
Vendor Information
Name {{ optional($vendor)->first_name ?: 'N/A' }}
Email {{ optional($vendor)->email ?: 'N/A' }}
Status {{ optional($vendor)->active == 1 ? 'Active' : 'Inactive' }}
Survey Topics
@forelse($surveyTopics as $topic) @empty @endforelse
{{ $topic->topic }}
No Survey Topics Available
Selected Topics
@forelse($helpTopics as $topic) @empty @endforelse
{{ $topic->topic }}
No Help Topics Available
Shop Preferences
Language {{ optional($storeDetails)->shop_language ?? 'N/A' }}
Country @if($storeDetails && $storeDetails->country_id) {{ optional(\App\Models\CountryModel::find($storeDetails->country_id))->name ?? 'Country not found' }} @else N/A @endif
Currency {{ $storeDetails->shop_currency ?? 'N/A' }}
Name of shop
Store Name {{ optional($storeDetails)->store_name ?? 'NA'}}
Logo @if(optional($storeDetails)->logo) Store Logo @else No logo available @endif
Description {{ optional($storeDetails)->description ?? 'No description available' }}
Get Paid
Bank Located @if($storeDetails && $storeDetails->bank_country) {{ optional(\App\Models\CountryModel::find($storeDetails->bank_country))->name ?? 'Country not found' }} @else N/A @endif
Seller type @if (optional($storeDetails)->tax_seller_type == 1) Individual @elseif (optional($storeDetails)->tax_seller_type == 2) Business @else N/A @endif
Country Residence @if($storeDetails && $storeDetails->residence_country) {{ optional(\App\Models\CountryModel::find($storeDetails->residence_country))->name ?? 'Country not found' }} @else N/A @endif
First Name {{ optional($storeDetails)->first_name ?? 'N/A' }}
Last Name {{ optional($storeDetails)->last_name ?? 'N/A' }}
DoB @if(isset($storeDetails->dob_day, $storeDetails->dob_month, $storeDetails->dob_year)) {{ $storeDetails->dob_day }}-{{ $storeDetails->dob_month }}-{{ $storeDetails->dob_year }} @else No DoB available @endif
Tax Payer Address
Number {{ optional($storeDetails)->tax_number ?: 'N/A' }}
Street name {{ optional($storeDetails)->tax_street ?: 'N/A' }}
Address line 2 {{ optional($storeDetails)->tax_address_line_2 ?: 'N/A' }}
City/Town {{ optional($storeDetails)->tax_city ?: 'N/A' }}
State/Province/Region {{ optional($storeDetails)->tax_state ?: 'N/A' }}
Postal Code {{ optional($storeDetails)->tax_post_code ?: 'N/A' }}
Phone number {{ optional($storeDetails)->tax_phone ?: 'N/A' }}
Bank Details
Bank Name {{ optional($bankDetails)->bank_name ?: 'N/A' }}
Account Number {{ optional($bankDetails)->company_account ?: 'N/A' }}
IBAN {{ optional($bankDetails)->iban ?: 'N/A' }}
Billing Address
Country @if($vendorDetails && $vendorDetails->country) {{ optional(\App\Models\CountryModel::find($vendorDetails->country))->name ?? 'Country not found' }} @else N/A @endif
Street address {{ optional($vendorDetails)->street1 ?: 'N/A' }}
Address line 2 {{ optional($vendorDetails)->street2 ?: 'N/A' }}
City/Town @if($vendorDetails && $vendorDetails->city) {{ optional(\App\Models\Cities::find($vendorDetails->city))->name ?? 'City not found' }} @else N/A @endif
State/Province/Region @if($vendorDetails && $vendorDetails->state) {{ optional(\App\Models\States::find($vendorDetails->state))->name ?? 'State not found' }} @else N/A @endif
Postal Code {{ optional($vendorDetails)->postal_code ?: 'N/A' }}
Phone number {{ optional($vendorDetails)->phone_number ?: 'N/A' }}
Shop Security
Two-factor authentication (2FA) {{ optional($vendor)->two_factor_auth ?: 'N/A' }}
@endsection @section('script') @endsection