$('#salary_pension_form').on('submit', function (event) { event.preventDefault(); $.ajax({ url: "{{ route('employees.pension_update',$employee->id) }}", method: "POST", data: new FormData(this), contentType: false, cache: false, processData: false, dataType: "json", success: function (data) { console.log(data); var html = ''; if (data.errors) { html = '
'; for (var count = 0; count < data.errors.length; count++) { html += '

' + data.errors[count] + '

'; } html += '
'; } if (data.error) { html = '
' + data.error + '
'; } if (data.success) { toastr.success(data.success, "Success!"); } $('#pension_form_result').html(html).slideDown(300).delay(5000).slideUp(300); } }); });