Get ready to discover the power of automation
Follow @comaugroup on LinkedIn and Instagram for real-time updates.

' +
 '
' +
 '
');
 } else {
 $response.html('
' + response.message + '
');
 }  $form.addClass('d-none');
 $submit.prop('disabled', false).text(originalText);
 form.reset();
 $form.removeClass('was-validated');
 },
 error: function(err) {
 const msg = err.responseJSON?.message || 'Something went wrong.';
 $response.html('
' + msg + '
');
 $submit.prop('disabled', false).text(originalText);
 }
 });
 }).fail(function() {
 $response.html('
Unable to initialize form. Please try again.
');
 $submit.prop('disabled', false).text(originalText);
 });
 });
});