$('a[href="#serviceProfile"]').on('click', function () {
  $('#addServiceForm').hide();
  $('#spinnerLoadProfile').show();
  $.get('/service/dashboard/' + $('#uri').text() + '/profile', function (data) {
    $('#serveName').val(data.service.name);