= simple_form_for [:admin, configuration], method: :patch, url: create_or_update_admin_configuration_path('blog'), as: :configuration, validate: true, turboboost: true, html: {id: 'blog-configuration-form'} do |f| = f.input :enabled, as: :boolean, inline_label: 'Enabled', label: false = f.input :site_name = f.input :site_subtitle = f.input :meta_description = f.input :meta_keyword = f.input :posts_per_page, as: :integer = f.input :disqus_shortname = f.input :sidebar, collection: Configurations::Blog::AVAILABLE_SIDEBARS, as: :check_boxes = f.input :twitter_username = f.input :facebook_url = f.input :google_plus_account_url = f.input :linkedin_url = f.input :github_username = f.input :show_rss_icon, as: :boolean, inline_label: 'Show RSS Icon', label: false .clearfix.pb10 = f.button :submit, 'Save Blog Settings', class: 'bt-sendo'