'required|email', 'password' => 'required|confirmed|min:6', 'name' => 'required|alpha', ); $attributes = array( 'email' => 'taylorotwell', 'password' => 'something', 'password_confirmation' => 'something', 'name' => 'taylor5', ); $messages = array('name_alpha' => 'The name must be alphabetic!'); $validator = Validator::make($attributes, $rules, $messages); $this->assertFalse($validator->valid()); $this->assertFalse($validator->errors->has('password')); } }