The datetime specification requires either a date or a null value. There aren't any "blank" dates. If you're using it for display purposes, you can convert to a character datatype which does support empty strings and do something like:
SELECT ISNULL(CONVERT(VARCHAR, my_date), '') AS my_date