No hint path defined for [contact]. code example
Example: No hint path defined for [mail].
You need to call the markdown() method in the build() method of your
mailable - not the view() method. See the example below:
/**
* Build the message.
*
* @return $this
*/
public function build()
{
return $this->markdown('view-to-mail');
}