@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_sub', [':email' => $verifyEmail]) }}
@endsection