user(); } /** * Get the validation rules that apply to the request. * * @return array */ public function rules() { return [ //'email' => 'required|string|email|max:100', 'first_name' => 'required|string|max:100', 'last_name' => 'required|string:max:100', 'password' => 'required|string|min:6', 'email' => new UniqueUserRule(), 'privacy_policy' => 'required', 'terms_of_service' => 'required' ]; } public function sanitize() { $input = $this->all(); // $this->replace($input); return $this->all(); } }