Either make Document the base type of Form etc, or make a form have the extra fields and a reference to a separate Document (i.e. use composition instead of inheritance). In this case it sounds like inheritance would quite possibly be the best option, but it really depends on what you want to do with it. Do you have code which is meant to work on any document, including Form, WorkInstruction etc?
EDIT: For example, suppose you have a user interface control which can show the common parts of any document - i.e. the common 8 fields. That would take an instance of Document. You may want to be able to pass a Form or WorkInstruction to it directly - in which case it's best to derive from Document. Alternatively, when rendering a Form or WorkInstruction, you could create an instance of the control passing in the document part separately. i.e. it's the difference between this (in C# - you haven't specified which language you're interested in):
class Form : Document { ... }
// Later on
Controls.Add(new DocumentDisplay(form));
and this:
class Form
{
private Document Document { get; set; }
// Other stuff
}
// Later on
Controls.Add (new DocumentDisplay(form.Document));
Without knowing the rest of your design, it's hard to recommend one or the other. I usually prefer composition over inheritance, but this feels like more of a natural inheritance situation.