ユーザー検索
app/views/users/index.html.erb
<%= form_with url: users_path, method: :get do |f| %>
<%= f.text_field :search_query %>
<%= f.select :birthplaces, BIRTHPLACES.map { |p| [p.capitalize, p] },
{}, { multiple: true, size: 10 } %>
<%= f.submit 'Search' %>
<% end %>
<% if @users.any? %>
<%= will_paginate %>
<%= will_paginate %>
<% else %>
No users found.
<% end %>