How to display success message after form submit?

In my current Laravel application all there is to do is fill out a form, so after the submission nothing else happens.

So now I'm wondering how it'd be best to display the success message and I've thought about three different ways:

  1. simply redirect with a success message (where the user can review the data he just sent)

  2. display a complete new page with -only- said success message

  3. show a modal (which seems the worst to me)

After the form submission nothing else happens;
I don't know which is the best solution or if any of them have advantages or disadvantages compared to the others.
Maybe you have another even better idea, if so please let me know.