@extends('layouts.auth') @section('content') @php /** * E-mail activation code. Same anatomy as auth/reset.php. * * Posts to /login, which is where the account is waiting: this is not a page somebody * navigates to but a state the sign-in door is in, so leaving it is a matter of finishing * or abandoning the sign-in rather than following a link away. * * @var string $verifyEmail the address the code was sent to */ $verifyEmail = $verifyEmail ?? ''; @endphp

{{ t_raw('auth.verify_title') }}

@php // Raw address into t(): t() substitutes the parameter and then escapes the whole // sentence, so pre-escaping it here got it escaped twice — an o'neil@… address // rendered as "o'neil@…" in the subtitle. @endphp

{{ t_raw('auth.verify_sub', [':email' => $verifyEmail]) }}

@csrf
@csrf
@csrf

@endsection