.main-page .page-title h1 Client Creation .row .col-md-12 = render 'company/wizard/clients/headers/main', client: @client, step_class: {client: 'active disabled'} .tab-content .row article.ml30.mr30 .col-md-12 = simple_form_for @location, url: company_locations_path, turboboost: true, validate: true, html: { multipart: true } do |f| p.text-center.info-text | Please select the organization you want to add the building to |   | You can create a new one if necessary. #tab1.tab-pane.gray-panel.centered-div.active .row .col-md-9.centered-div h4 Existing Organizations .form-group.col-md-9.centered-div.location-wizard .icon-addon.addon-sm.address-api = f.input :company_id, as: :select, collection: [f.object.company].presence, label: false, placeholder: 'Select Client', input_html: {class: 'select2-input', data: {select2_mappings: {responseSelector: :companies, textSelector: :name}, select2_options: {ajax: {url: api_clients_path}, templateResult: 'select2companyTemplateResult'}}} label.fa.fa-search for="Address" rel="tooltip" title="Address" .form-group.text-right.margintop20 = link_to new_company_company_client_path, class: [:'pull-right', :'text-primary'] do = fa_icon(:'plus-circle', text: 'CREATE NEW COMPANY') .clearfix .row.mt20 .buttons-holder.col-md-12 = link_to 'Back', company_locations_path, class: 'btn btn-back' = f.submit "Continue", class: "btn btn-continue"