I said I would remain silent, but I can't now.
A couple of things:
Lower value resistors increase noise immunity. Others may use dividers with 50K Thevenin equivalents, but it is generally better to have somewhat lower impedance unless you have really high voltages, or are powered with a battery. A 10K (total) resistance across 12V will dissipate 14mW and will draw 1.2mA. No big deal.
PIC *INPUT* pins are good for 20mA (at least that is what my 18F8723 datasheet says). That means that you can connect a 1K resistor from 12V directly to a PIC input pin with no damage. The input will clamp at 5.5V. 12V - 5.5V = 6.5V/1K = 6.5mA = NO DAMAGE. You don't need zeners, diodes, anything. You should, however put a cap (.1 or so) across the input pin to GND. An extremely fast high voltage (spark) can drive the input above the breakdown voltage before the input clamp diode has a chance to conduct. The capacitor slows down the risetime to a safe value.
That 1K resistor directly to the input pin will be fine unless the applied voltage is sustained for more than a few mSec at 25V or higher. Change that resistor to 10K and you will be able to tolerate 200V continuously (of course, the resistor would need to be a 5W type).
This is not "chip abuse". This is according to the datasheet.
Some other things (probably more important in your case) are whether or not inputs will be present when the PIC has no Vcc. A 1K resistor to 12V will be able to supply enough current to power the PIC through its body diodes. In fact, if there is very little load on Vcc, that 1K resistor to 12V will drive Vcc to above 10V, since the current will flow from 12V through the resistor through the body diode and into Vcc. A lot of people (me included) have found that their circuits did not RESET properly on startup only to find that when shut off, the PIC still had significant voltage on it. The PIC was being powered through its input pins by a circuit that still had power when the PIC was supposedly shut off.
If the inputs will have power when the PIC does not, use optos or transistors on the inputs, otherwise, resistors will work fine.
Bookmarks