TRF Certest first commit

This commit is contained in:
2025-02-26 08:57:46 +01:00
commit 3ce064a108
2524 changed files with 475404 additions and 0 deletions
@@ -0,0 +1,22 @@
@component('mail::message')
# @lang('Hello!')
@lang('You are receiving this email because we received a password reset request for your account.')
@component('mail::button', ['url' => route('password.reset', ['token' => $token])])
@lang('Reset Password')
@endcomponent
@lang('This password reset link will expire in :count minutes.', [
'count' => config('auth.passwords.users.expire')
])
@lang('If you did not request a password reset, no further action is required.')
@lang('Regards'),<br>
{{ setting('app_name') }}
@endcomponent
@@ -0,0 +1,19 @@
@component('mail::message')
# @lang('Hello!')
@lang('New user was just registered on :app website.', ['app' => setting('app_name')])
@lang('To view the user details just visit the link below.')
@component('mail::button', ['url' => route('users.show', $user)])
@lang('View User')
@endcomponent
@lang('Regards'),<br>
{{ setting('app_name') }}
@endcomponent