$('.buttonSubmit').click(()=>{
if($('#input_name').val().length===0){
swal('Please fill in user name'); $('#input_name').focus(); return;
}
if($('#input_phone').val().length===0){
swal('Please fill in Phone number'); $('#input_phone').focus(); return;
}
});