adrema/app/Http/Controllers/Auth/ForgotPasswordController.php

30 lines
839 B
PHP
Raw Normal View History

2020-04-10 20:32:12 +02:00
<?php
namespace App\Http\Controllers\Auth;
use App\Http\Controllers\Controller;
use Illuminate\Foundation\Auth\SendsPasswordResetEmails;
2023-09-08 00:29:37 +02:00
use Inertia\Inertia;
use Inertia\Response;
2020-04-10 20:32:12 +02:00
class ForgotPasswordController extends Controller
{
/*
|--------------------------------------------------------------------------
| Password Reset Controller
|--------------------------------------------------------------------------
|
| This controller is responsible for handling password reset emails and
| includes a trait which assists in sending these notifications from
| your application to your users. Feel free to explore this trait.
|
*/
use SendsPasswordResetEmails;
2023-09-08 00:29:37 +02:00
public function showLinkRequestForm(): Response
{
return Inertia::render('authentication/PasswordReset');
}
2020-04-10 20:32:12 +02:00
}