@extends('vendor.layouts.app') @section('style') @endsection @section('content')
@if (auth()->user()->store_logo_path) Store logo @else Profile @endif

{{ auth()->user()->name }}

{{ auth()->user()->business_name }}

@if (auth()->user()->kyc_submitted_at) KYC Submitted @else KYC Pending @endif

Account Details

Full Name
{{ auth()->user()->name }}
Business Name
{{ auth()->user()->business_name ?: '—' }}
Email Address
{{ auth()->user()->email }}
Phone Number
{{ auth()->user()->phone ?: '—' }}
Business Type
{{ auth()->user()->business_type ?: '—' }}

Store Details

Store Name
{{ auth()->user()->store_name ?: '—' }}
Category
{{ auth()->user()->store_category ?: '—' }}
Sub-Category
{{ auth()->user()->store_sub_category ?: '—' }}
Store Address
{{ auth()->user()->store_address ?: '—' }}
Store Description
{{ auth()->user()->store_description ?: '—' }}

KYC Documents

@if (auth()->user()->kyc_submitted_at)
Business Document
@if (auth()->user()->business_document_path) View Document @else
@endif
Tax ID / GST Certificate
@if (auth()->user()->tax_document_path) View Document @else
@endif
Identity Proof
@if (auth()->user()->identity_document_path) View Document @else
@endif

Submitted on {{ auth()->user()->kyc_submitted_at->format('d M Y, h:i A') }}

@else

No KYC documents submitted yet.

Upload KYC Documents @endif
Edit Store Details Account Settings
@endsection