@extends('frontend.layouts.golden.auth') @section('title', __('Verify Email')) @section('auth-content') @php $user = auth()->user(); $emailMasked = $user?->email ? preg_replace_callback('/^(.).*(.)@/u', fn ($m) => $m[1].'***'.$m[2].'@', (string) $user->email) : ''; @endphp
@include('frontend.layouts.golden.partials._auth_form_top')
@if(session('status') === 'verification-link-sent')
{{ __('A new verification link has been sent to the email address you provided during registration.') }}
@endif
{{ __('Almost In') }}

{!! __('Confirm your :em to continue.', ['em' => ''.__('address').'']) !!}

@if($emailMasked) @endif

{{ __('We sent a sealed link. Open it within fifteen minutes.') }}

@if($user?->email) {{ __('Open Email App') }} @endif
@csrf
@include('frontend.layouts.golden.partials._auth_brand_panel', ['visual' => 'envelope'])
@endsection