While I am kidding around here, I think several members of this forum told you before that we don't give out homework solutions here. It's for your own benefit, believe it or not. :)
What have you tried to get this work so far? We will happily help you after you show at least one reasonable attempt. :/
With the exception of the first and last rows, every single row has only two stars: at the beginning of a line, and at the end.
So, what I think you'll want to do is have a for loop to deal with each line (which you have), and inside that, first print one asterisk. Then, in another for loop inside your other for loop, print a number of spaces (from my little picture, do you see how the number of spaces increases?), and outside of that loop print another asterisk and a newline.
Can you try to write that?
-Albatross
P.S: <iostream> should have no .h, main should have an int before it, and you should return 0; at the end of int main().