first commit
This commit is contained in:
14
resources/views/emails/invite.blade.php
Normal file
14
resources/views/emails/invite.blade.php
Normal file
@@ -0,0 +1,14 @@
|
||||
@component('mail::message')
|
||||
# {{ __('emails.invite.welcome', ['name' => config('app.name')]) }}
|
||||
|
||||
{{ __('emails.invite.use_these_credentials') }}: <br>
|
||||
|
||||
<strong>{{ __('emails.invite.login') }}:</strong> {{ $login }}<br>
|
||||
<strong>{{ __('emails.invite.password') }}:</strong> {{ $password }}
|
||||
|
||||
@component('mail::button', ['url' => config('app.frontend_url')])
|
||||
{{ __('emails.invite.login_btn') }}
|
||||
@endcomponent
|
||||
|
||||
{{ __('emails.invite.regards', ['name' => config('app.name')]) }}
|
||||
@endcomponent
|
||||
13
resources/views/emails/registration.blade.php
Normal file
13
resources/views/emails/registration.blade.php
Normal file
@@ -0,0 +1,13 @@
|
||||
@component('mail::message')
|
||||
# {{ __('emails.registration.welcome', ['name' => config('app.name')]) }}
|
||||
|
||||
{{ __('emails.registration.invited', ['name' => config('app.name')]) }}
|
||||
|
||||
{{ __('emails.registration.registration') }}
|
||||
|
||||
@component('mail::button', ['url' => $url])
|
||||
{{ __('emails.registration.create') }}
|
||||
@endcomponent
|
||||
|
||||
{{ __('emails.registration.regards', ['name' => config('app.name')]) }}
|
||||
@endcomponent
|
||||
Reference in New Issue
Block a user