mirror of
https://github.com/BillyOutlast/UNIT3D.git
synced 2026-02-13 23:41:03 +01:00
17 lines
311 B
PHP
Executable File
17 lines
311 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Http\Controllers\Auth;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use Illuminate\Foundation\Auth\SendsPasswordResetEmails;
|
|
|
|
class ForgotPasswordController extends Controller
|
|
{
|
|
use SendsPasswordResetEmails;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->middleware('guest');
|
|
}
|
|
}
|