mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 01:58:07 +00:00
16 lines
526 B
PHP
16 lines
526 B
PHP
@extends('mails.layout')
|
|
|
|
@section('content')
|
|
# {{ __('Reset your password') }}
|
|
|
|
{{ __('Hello') }} {{ $account->identifier }},
|
|
|
|
{{ __('We received a request to reset your password for your account on :space.', ['space' => $account->space->name]) }}
|
|
|
|
{{ __('Click the button below to choose a new password:') }}
|
|
|
|
[{{ __('Reset my password') }}]({{ $account->currentResetPasswordUrl }})
|
|
|
|
{{ __('This link will expire in :hour hours.', ['hour' => config('app.reset_password_email_token_expiration_minutes')/60 ]) }}
|
|
|
|
@endsection
|