18 lines
409 B
PHP
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') }}
|
|
|