flexisip-account-manager/flexiapi/resources/views/mails/reset_password.blade.php
2025-04-29 09:12:59 +00:00

15 lines
562 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.
<x-mail::button :url="route('account.reset_password_email.change', $account->currentResetPasswordEmailToken->token)" color="primary">
Reset by email
</x-mail::button>
@endsection