@php use Illuminate\Support\Str; $pageTitle = $title ?? 'Konfirmasi Email'; $isSuccess = ($status ?? '') === 'success'; $displayOld = Str::mask($user->email ?? '-', '*', 2, 6); $displayNew = Str::mask($newEmail ?? '-', '*', 2, 6); $cooldown = $cooldownHours ?? 6; @endphp {{ $pageTitle }}
{{ $isSuccess ? '✅' : '⚠️' }}

{{ $pageTitle }}

{{ $message ?? ($isSuccess ? 'New email successfully verified.' : 'Confirmation failed. Token is invalid or email has already been confirmed.') }}

Email Lama {{ $displayOld }}
Email Baru {{ $displayNew }}
Status {{ $isSuccess ? 'Verified' : 'Failed' }}
@if($isSuccess) {{--

Perubahan email akan aktif otomatis setelah masa cooldown {{ $cooldown }} jam selesai oleh job terjadwal.

--}}

Email changes will be activated automatically after the cooldown period of {{ $cooldown }} hours is completed by the scheduled job.p> @else

You can request a confirmation link again from the account profile page.

@endif
{{--

Butuh bantuan? Hubungi dukungan.

--}}