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

' + data.errors[count] + '

'; } html += '
'; } if (data.success) { html = '
' + data.success + '
'; if (data.profile_picture) { $('#employee_profile_photo').html(""); $('#employee_profile_photo').append(""); } $('#profile_sample_form')[0].reset(); $('#profile_sample_form')[0].reset(); } $('#profile_form_result').html(html).slideDown(300).delay(5000).slideUp(300); } }); });