diff --git a/app/assets/stylesheets/application.scss b/app/assets/stylesheets/application.scss
index 2249d049..15e8a986 100755
--- a/app/assets/stylesheets/application.scss
+++ b/app/assets/stylesheets/application.scss
@@ -98,4 +98,9 @@ nav.pagination .page a:hover,
i.logout_icon{
position: relative;
top: 5px;
+}
+
+/* Second display image */
+.second-display{
+ margin : 12px;
}
\ No newline at end of file
diff --git a/app/views/settings/shops/_form.html.erb b/app/views/settings/shops/_form.html.erb
index 7a3c0a04..57665164 100755
--- a/app/views/settings/shops/_form.html.erb
+++ b/app/views/settings/shops/_form.html.erb
@@ -40,18 +40,22 @@
-
-
-
-
+ <%= f.file_field :image, :multiple => true, name: "display_images[image][]" %>
+
<%= f.submit "Submit",:class => 'btn btn-primary btn-lg waves-effect' %>
diff --git a/app/views/settings/shops/show.html.erb b/app/views/settings/shops/show.html.erb
index 7d04d504..40082d72 100755
--- a/app/views/settings/shops/show.html.erb
+++ b/app/views/settings/shops/show.html.erb
@@ -97,13 +97,13 @@
| Shop Image |
- <%= image_tag @settings_shop.logo, :size => '200x200'%> |
+ <%= image_tag @settings_shop.logo, :class => "img-thumbnail second-display", :size => "155x185"%> |
| Shop Images |
<% @display_images.each do |p| %>
- <%= image_tag "#{p.image}" %>
+ <%= image_tag "#{p.image}", :class => "img-thumbnail second-display", :size => "155x185"%>
<% end %>
|