33 lines
643 B
PHP
33 lines
643 B
PHP
<?php
|
|
|
|
namespace Vanguard\Http\Requests\Auth;
|
|
|
|
use Vanguard\Http\Requests\Request;
|
|
|
|
class PasswordResetRequest extends Request
|
|
{
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function rules()
|
|
{
|
|
return [
|
|
'token' => 'required',
|
|
'email' => 'required|email',
|
|
'password' => 'required|confirmed|min:8'
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Get the password reset fields.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function credentials()
|
|
{
|
|
return $this->only('email', 'password', 'password_confirmation', 'token');
|
|
}
|
|
}
|