Can I add an image as a label in a custom Inspector?

I have a custom inspector for a maze generation script. I made a custom inspector for it, with different fields for different types of blocks to tile (corners, branching walls, etc) so you can add your models needed to build the maze. To simplify the process, I want a small image next to each field to appear, so the user of the script can see how the blocks should be oriented when added. I cannot figure out how to add an image to the Inspector. It would just be like a label, but displaying an image instead of text.

I figured it out. I put the images in a folder called `Resources so I could use this:

private var myTexture : Texture = Resources.Load("file_name_without_extension");

Then I could use it as a label just like any GUI:

GUILayout.Label(myTexture);