Try this:
% memchaptocprob2.tex SE 538377
\documentclass[openleft]{memoir} % or book or report
%\documentclass[openleft]{book} % or book or report but they don't have openleft
\usepackage{lipsum}
\usepackage{minitoc}
\usepackage{graphicx}
\begin{document}
\dominitoc
\tableofcontents
\chapter{First}
\includegraphics{example-image-duck}
\clearpage
\minitoc
%\clearpage
\lipsum[1]
\section{One}
\lipsum[2]
\section{Two}
\lipsum[3]
\end{document}
It requires the minitoc package for the local ToC; read the documentation (texdoc minitoc) as to how to change the appearance. The memoir class includes the openleft option so that chapters start on even numbered pages which your sample outputs indicates (if you use the book or report classes you will have to do some extra coding). It is up to you to provide the image and its location, and any other adjustments you feel you need, for example the relation between the local ToC and text.
minitocpackage: https://www.ctan.org/pkg/minitoc – luki Apr 13 '20 at 15:27