Both are technically correct. I've been on teams that prefer one over the other. I prefer the second one because there is less chance of screwing up when you need add something to the if clause and there is less noise when looking at code diffs.
They are both correct in this case. The general rule is that if you have more than one statement you must use braces. There are other situations where braces are needed in if/else constructs, so you are probably best to put them in all the time.