whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
Modules
/
RestAPI
/
Http
/
Requests
/
Auth
/
Upload File:
files >> //home/kckglobal/www/portal/Modules/RestAPI/Http/Requests/Auth/ResetPasswordRequest.php
<?php namespace Modules\RestAPI\Http\Requests\Auth; use Modules\RestAPI\Http\Requests\BaseRequest; class ResetPasswordRequest extends BaseRequest { /** * Get the validation rules that apply to the request. * * @return array */ public function rules() { return [ 'password_reset_token' => 'required|exists:employees,password_reset_token', 'password' => 'required|min:6', ]; } /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize() { return true; } }
Copyright ©2021 || Defacer Indonesia