$('form').submit(function (e) { e.preventDefault(); axios.post(this.action, $(this).serialize()).then(response => { if (response.data.status) { alert(response.data.message); setTimeout(function () { history.go(0); }, 1500); } else { alert(response.data.message); } }); });