Files
usher-manage-stack/resources/views/emails/members/activation-text.blade.php
2025-11-20 23:21:05 +08:00

18 lines
409 B
PHP

@php
/** @var \App\Models\User $user */
@endphp
{{ __('Hello') }} {{ $user->name }},
{{ __('You have been registered as a member on :app.', ['app' => config('app.name')]) }}
{{ __('To activate your online account and set your password, please open the link below:') }}
{{ $resetUrl }}
{{ __('If you did not expect this email, you can ignore it.') }}
{{ __('Thank you,') }}
{{ config('app.name') }}