I am starting to write my thesis, and I am trying to reproduce this starting page in the book document. However I am struggling on putting the image is the same part of the page. Any ideas?
Should I use the memoir document instead?

This is what I tried so far:
\documentclass[11pt,a4paper,oneside]{book}
\usepackage{graphics}
\usepackage{graphicx}
\titlehead{\centering\includegraphics[width=6cm]{logo.png}}
\title{Thesis title}
\author{Name}
\date{July 2019}
\begin{document}
\maketitle
\clearpage
\chapter*{Abstract}
My abstract
\end{document}
However I get an error with \titlehead saying it is undefined.
\titleheadis from thescrbookclass. Note, usually you only load thegraphicxpackage or thegraphicspackage, not both;graphicxis the enhanced version. – Andrew Swann Oct 22 '18 at 09:52