@extends('admin.layouts.app') @section('title', 'Add Tax') @section('content')

Update Tax Information

Update Tax Information

@if ($errors->any()) {{ implode('', $errors->all('
:message
')) }} @endif

Enter in your Taxpayer information and upload government-issued ID and legal document below so we can verify your tax payer information.

  • We’ll confirm that the name you entered matches what’s on your document (usually within 48 hours).
  • Your shop will stay open but you won’t be able to receive funds from your sales until we verify your taxpayer info.
  • Make sure to verify your taxpayer info within 60 days, or we’ll need to cancel your pending sales.
@csrf
@if (Auth::user()->getMeta('seller_type') == 'individual')
getMeta('document') != null ? 'data-default-file = ' . asset(Auth::user()->getMeta('document')) : '' }} />
@elseif(Auth::user()->getMeta('seller_type') == 'business')

hasTax() ? (Auth::user()->getTax->disregarded == 1 ? 'checked' : '') : '' }}> hasTax() ? (Auth::user()->getTax->disregarded == 0 ? 'checked' : '') : '' }}>
hasTax() ? (Auth::user()->getTax->business_document ? 'data-default-file = ' . asset(Auth::user()->getTax->business_document) : '') : '' }} />
getMeta('document') != null ? 'data-default-file = ' . asset(Auth::user()->getMeta('document')) : '' }} />
@endif
@endsection