PHP Class App\Http\Controllers\Back\Auth\ResetPasswordController

Inheritance: extends app\http\controllers\Controller, use trait Illuminate\Foundation\Auth\ResetsPasswords
Show file Open project: spatie-custom/blender

Protected Properties

Property Type Description
$redirectTo

Public Methods

Method Description
__construct ( ) Create a new controller instance.
broker ( ) : Illuminate\Contracts\Auth\PasswordBroker Get the broker to be used during password reset.
showResetForm ( Illuminate\Http\Request $request, string | null $token = null ) : Illuminate\Http\Response Display the password reset view for the given token.

Protected Methods

Method Description
guard ( )
sendResetResponse ( string $response ) : Illuminate\Http\Response Get the response for a successful password reset.

Method Details

__construct() public method

Create a new controller instance.
public __construct ( )

broker() public method

Get the broker to be used during password reset.
public broker ( ) : Illuminate\Contracts\Auth\PasswordBroker
return Illuminate\Contracts\Auth\PasswordBroker

guard() protected method

protected guard ( )

sendResetResponse() protected method

Get the response for a successful password reset.
protected sendResetResponse ( string $response ) : Illuminate\Http\Response
$response string
return Illuminate\Http\Response

showResetForm() public method

If no token is present, display the link request form.
public showResetForm ( Illuminate\Http\Request $request, string | null $token = null ) : Illuminate\Http\Response
$request Illuminate\Http\Request
$token string | null
return Illuminate\Http\Response

Property Details

$redirectTo protected property

protected $redirectTo