@extends('layouts.account') @section('title', __('Get verified')) @section('heading', __('Get verified')) @section('subheading', __('Verified sellers get more enquiries, because buyers can see someone has checked.')) @section('account') @if (session('error')) {{ session('error') }} @endif @if ($request?->status->isVerified()) {{ $type->assurance() }} {{ __('The badge appears on your profile and on every listing you publish.') }} @elseif ($request?->isPending()) {{ __('Submitted :when. We usually decide within two working days.', [ 'when' => $request->created_at->diffForHumans(), ]) }} @elseif ($request?->status->value === 'rejected') {{ $request->decision_note }} {{ __('Correct it below and send it again.') }} @endif

{{ __(':type verification', ['type' => $type->label()]) }}

{{ $type->assurance() }}

{{-- Said plainly, because handing over identity papers is a real ask. --}} {{ __('Your documents are stored privately. They are never shown on your profile, never linked, and only our review team can open them.') }}
@csrf
{{ __('Documents') }} @foreach ($documents as $kind => $label) @php($supplied = $request?->documents->firstWhere('kind', $kind))
@if ($supplied)

{{ __('Already sent:') }} {{ $supplied->original_name }} ({{ $supplied->humanSize() }}). {{ __('Choose a file to replace it.') }}

@endif @error('documents.'.$kind)

{{ $message }}

@enderror
@endforeach
@endsection