Not showing alert, as well redirecting is not working
//sweetalert2
swal({
title: "Success!",
text: "Agent Created Successfully.",
type: "success",
}.then(function(){
alert('here');
window.location.href = "example.html";
}));
Looks like your paren is misplaced:
//sweetalert2
swal({
title: "Success!",
text: "Agent Created Successfully.",
type: "success",
}).then(function(){
alert('here');
window.location.href = "example.html";
});