plugins/ShinyCMS/app/views/shinycms/admin/includes/_search.html.erb
<% action ||= url_for; action = "#{action}/search" unless action.ends_with? '/search' %>
<% label ||= nil; placeholder ||= '' %>
<span class="float-right">
<%= form_tag action, method: :get do |f| %>
<% if label.present? %><%= label_tag label %><% end %>
<%= text_field_tag :q, '', placeholder: placeholder %>
<% end %>
</span>