@extends('admin.template.layout') @section('content')
| Name | {{ optional($vendor)->first_name ?: 'N/A' }} |
|---|---|
| {{ optional($vendor)->email ?: 'N/A' }} | |
| Status | {{ optional($vendor)->verified == 1 ? 'Active' : 'Inactive' }} |
| {{ $topic->topic }} |
| No Survey Topics Available |
| {{ $topic->topic }} |
| No Help Topics Available |
| 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' }} |
| Store Name | {{ optional($storeDetails)->store_name ?? 'NA'}} |
|---|---|
| Logo |
@if(optional($storeDetails)->logo)
|
| Description |
| 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 |
| 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 Name | {{ optional($bankDetails)->bank_name ?: 'N/A' }} |
|---|---|
| Account Number | {{ optional($bankDetails)->company_account ?: 'N/A' }} |
| IBAN | {{ optional($bankDetails)->iban ?: 'N/A' }} |
| 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' }} |
| Standard Delivery Text | {{ $storeDetails->standard_delivery_text }} |
|---|---|
| Custom Delivery Minimum Days | {{ $storeDetails->delivery_min_days ?? 'N/A' }} days |
| Custom Delivery Maximum Days | {{ $storeDetails->delivery_max_days ?? 'N/A' }} days |
Delivery information not set.
@endif| Two-factor authentication (2FA) | {{ optional($vendor)->two_factor_auth ?: 'N/A' }} |
|---|