'required|email|unique:users', 'password' => 'required|confirmed|min:8', ]; } /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize() { return true; } }