<%= title.titleize %> Hotel Image
<%= simple_form_for hotel_image, url: url, html: {method: method.to_sym, multipart: true}, wrapper: :horizontal_form, wrapper_mappings: { file: :horizontal_file } do |f| %>
<%= image_tag hotel_image.image.url(:thumb), class: "img-fluid" unless hotel_image.new_record? %> <%= f.input :image, as: :file %> <%= hidden_field_tag :merchant_klass, "object.merchant_klass" %>
Please upload image with size 1024px x 768px (height x width)
<%= link_to "Close", "javascript:void(0)", class: "btn btn-secondary", data: {dismiss: "modal"} %> <%= f.button :submit, class: "btn-primary" %>
<% end %>