40 lines
1.2 KiB
PHP
40 lines
1.2 KiB
PHP
@component('mail::message')
|
|
@if($locale === 'ar')
|
|
<div dir="rtl" style="text-align: right;">
|
|
# {{ __('emails.password_reset_by_admin_title', [], $locale) }}
|
|
|
|
{{ __('emails.password_reset_by_admin_greeting', ['name' => $user->full_name ?? $user->company_name], $locale) }}
|
|
|
|
{{ __('emails.password_reset_by_admin_body', [], $locale) }}
|
|
|
|
**{{ __('emails.your_new_password', [], $locale) }}:** `{{ $newPassword }}`
|
|
|
|
{{ __('emails.password_reset_by_admin_note', [], $locale) }}
|
|
|
|
@component('mail::button', ['url' => route('login')])
|
|
{{ __('emails.login_now', [], $locale) }}
|
|
@endcomponent
|
|
|
|
{{ __('emails.regards', [], $locale) }}<br>
|
|
{{ config('app.name') }}
|
|
</div>
|
|
@else
|
|
# {{ __('emails.password_reset_by_admin_title', [], $locale) }}
|
|
|
|
{{ __('emails.password_reset_by_admin_greeting', ['name' => $user->full_name ?? $user->company_name], $locale) }}
|
|
|
|
{{ __('emails.password_reset_by_admin_body', [], $locale) }}
|
|
|
|
**{{ __('emails.your_new_password', [], $locale) }}:** `{{ $newPassword }}`
|
|
|
|
{{ __('emails.password_reset_by_admin_note', [], $locale) }}
|
|
|
|
@component('mail::button', ['url' => route('login')])
|
|
{{ __('emails.login_now', [], $locale) }}
|
|
@endcomponent
|
|
|
|
{{ __('emails.regards', [], $locale) }}<br>
|
|
{{ config('app.name') }}
|
|
@endif
|
|
@endcomponent
|