flexisip-account-manager/flexiapi/resources/views/mails/reset_password.blade.php
2025-10-13 14:31:48 +02:00

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