@extends('emails.layouts.base') @section('title', __('Verify Your Account')) @section('header', __('Verify Your Account')) @section('content')

{{ __('Hello, :name', ['name' => $user->full_name]) }}

{{ __('Thank you for signing up. Please use the following OTP to verify your email address:') }}

{{ $user->reset_code }}

{{ __('This OTP is valid for 10 minutes. If you did not request this, please ignore this email.') }}

@endsection