mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
16 lines
653 B
PHP
16 lines
653 B
PHP
@extends('mails.layout')
|
|
|
|
@section('content')
|
|
# Reset your password on {{ $account->space->name }}
|
|
|
|
Hello {{ $account->identifier }},
|
|
|
|
You are invited to reset your {{ $account->identifier }} account password on {{ $account->space->name }} via your email account.
|
|
|
|
The following link will be valid for {{ config('app.reset_password_email_token_expiration_minutes')/60 }} hours.
|
|
|
|
[{{ __('Reset my password') }}]({{ route('account.reset_password_email.change', $account->currentResetPasswordEmailToken->token) }})
|
|
|
|
{{ __('This link will expire in :hour hours.', ['hour' => config('app.reset_password_email_token_expiration_minutes')/60 ]) }}
|
|
|
|
@endsection
|