flexisip-account-manager/flexiapi/resources/views/account/password_changed.blade.php
2025-06-19 10:13:53 +02:00

18 lines
495 B
PHP

@extends('layouts.main', ['welcome' => true])
@section('content')
<section>
<header>
<h1><i class="ph ph-lock"></i> {{ __('Reset password') }}</h1>
</header>
<p>{{ __('Your password was updated properly.') }}</p>
<p>
<a class="btn" href="{{ route('account.login')}}">{{ __('Authenticate') }}</a>
</p>
</section>
<section class="on_desktop">
<img src="{{ asset('img/lock.svg') }}">
</section>
@endsection