Good Data: array(10) { ["first_name"]=> bool(true) ["last_name"]=> bool(true) ["address"]=> bool(true) ["city"]=> bool(true) ["state_province"]=> bool(true) ["postal_code"]=> bool(true) ["phone"]=> bool(true) ["country"]=> bool(true) ["email"]=> bool(true) ["budget"]=> bool(true) } Bad Data: first_name : Item must contain only letters and numbers last_name : Length must be no more than 128 address : Item Missing city : Length must be no more than 64 state_province : Item Missing postal_code : Length must be no more than 16 postal_code : Item must contain only letters and numbers phone : Phone number must be in a format [+n] nnn-nnn-nnnn country : Item was not found in the list of valid values email : Invalid email address array(10) { ["first_name"]=> bool(false) ["last_name"]=> bool(false) ["address"]=> bool(false) ["city"]=> bool(false) ["state_province"]=> bool(false) ["postal_code"]=> bool(false) ["phone"]=> bool(false) ["country"]=> bool(false) ["email"]=> bool(false) ["budget"]=> bool(true) }