firs commit

This commit is contained in:
2025-09-14 18:41:00 +02:00
commit 8cbae222cc
2528 changed files with 476923 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,12 @@
@component('mail::message')
# @lang('Hello!')
@lang('Your account has been approved by administrators. You can now log in now and start using the application.')
<br>
@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
@@ -0,0 +1,18 @@
@component('mail::message')
# @lang('Hello!')
@lang('New user was just registered on :app website.', ['app' => setting('app_name')])
@lang('The user is waiting on your approval to be able to access the website.')
@lang('To view the user details just visit the link below.')
@component('mail::button', ['url' => route('users.edit', $user)])
@lang('View User')
@endcomponent
@lang('Regards'),<br>
{{ setting('app_name') }}
@endcomponent