05AB1E, 15 14 13 bytes
Saved 1 byte thanks to Adnan
A¹¡н«ƶ€S»¶¡āú» Try it online!Try it online! or the Ascii art versionAscii art version
Explanation
A # push lowercase alphabet ¹¡ # split at input н # get the first part « # append the input ƶ # repeat each a number of times corresponding to its 1-based index €S # split each to a list of chars » # join on spaces and newlines ¶¡ # split on newlines āú # prepend spaces to each corresponding to its 1-based index » # join on newlines