@extends('front.layouts.master-auth') @section('css') @endsection @section('content')
@if($user->phone_verified_at)

@lang('front.phone_verified_badge') ✓

{{ $user->phone_dial_code }} {{ $user->phone }}

@lang('front.phone_verification_verified_at'): {{ \Carbon\Carbon::parse($user->phone_verified_at)->translatedFormat('d F Y') }}
@elseif($codeRequest && $codeRequest->isAwaitingWhatsApp())

@lang('front.phone_verification_code_title')

@lang('front.phone_verification_code_subtitle_prefix') @if($businessWhatsApp && $codeRequest->buildWaMeUrl() !== '#') {{ $businessWhatsApp }} @else {{ $businessWhatsApp }} @endif

@include('front.user.phone-verification._code_box', ['id' => 'pv-code-display', 'code' => $codeRequest->verification_code, 'onCopy' => 'copyCode()'])

@include('front.user.phone-verification._whatsapp_steps_hint')
@elseif($request && $request->isPending()) @include('front.user.phone-verification._status_card', ['request' => $request]) @else @if($latest && $latest->isRejected()) @include('front.user.phone-verification._status_card', ['request' => $latest]) @endif

@lang('front.phone_verification_title')

@lang('front.phone_verification_manual_subtitle')

@endif
@endsection @section('js-body') @endsection