/home/techb158/ileadtechnology.com/SSM/app/Http/Requests/auth
Edit: /home/techb158/ileadtechnology.com/SSM/app/Http/Requests/auth/ResetPasswordRequest.php (1207B)
'required|email',
'password' => 'required|min:6',
'password_confirmation' => 'required|same:password'
];
}
/**
* Translate fields with user friendly name.
*
* @return array
*/
public function attributes()
{
return [
'email' => trans('auth.email'),
'password' => trans('auth.password'),
'password_confirmation' => trans('auth.password_confirmation'),
];
}
/**
* Get the error messages for the defined validation rules.
*
* @return array
*/
public function messages()
{
return [
];
}
}