I'm using
The Legrand Book Template. In chapter 3 I tried referring the placeholder image but it is not referring to it correctly as shown in image.

\section{Figure}\index{Figure}
I'm referring to figure \ref{fig:placeholder}.
\begin{figure}[h]
\label{fig:placeholder}
\centering\includegraphics[scale=0.5]{placeholder}
\caption{Figure caption}
\end{figure}
You can find the complete code here.
What should I do to correct it?
\labelmust appear after\caption(or in the\caption{}content), but not before. You're referring to the last counter being increased with\refstepcounter, this issectioncounter in this case (done internally in the\sectionmacro, effectively), it uses the counter information from the\section{Figure}here, which is not what you want. – Jun 27 '17 at 17:12\labelshould be used after\caption;-) – Jun 27 '17 at 17:17