.modal-header .modal-new-top .modal-close = link_to '', '#', class: 'close-dialog', data: {dismiss: :modal} h4 Edit Invoice .modal-new-create = simple_form_for [:tutor, @invoice], validate: true, turboboost: true do |f| .col-sm-12.no-padding.invoices-form .col-sm-6 = f.input :user_id, collection: current_user.invoiceable_users.map{|u| [u.full_name, u.id]}, label:false, prompt: 'Whom' .col-sm-6 = f.input :amount, validate: true, label: false, placeholder:'Amount' .col-sm-12 = f.input :description, validate: true, as: :text, label: false, input_html: {class: 'ht50', placeholder:'Description'} .col-sm-12.align-center = f.button :submit, 'Send Invoice' .clearfix