@extends('layout.default') @section('head') @endsection @section('content') @if ($errors->any()) @foreach ($errors->all() as $error)

{{ $error }}

@endforeach @endif {{ html()->form('POST', route('chrome_settings.store'))->open() }} {{ html()->hidden('save_profile', 0)->forgetAttribute('id') }} {{ html()->hidden('save_history', 0)->forgetAttribute('id') }} {{ html()->hidden('save_password', 0)->forgetAttribute('id') }} {{ html()->hidden('save_cookie', 0)->forgetAttribute('id') }} {{ html()->hidden('save_bookmark', 0)->forgetAttribute('id') }} {{ html()->hidden('setting_invisible', 0)->forgetAttribute('id') }} {{ html()->hidden('enable_xff', 0)->forgetAttribute('id') }} {{ html()->hidden('enable_pauth', 0)->forgetAttribute('id') }}
設定名 * CHROME_{{ html()->text('name')->required() }}
ホームページ {{ html()->text('homepage') }}
スタートページ {{ html()->text('startup_page') }}
新しいタブページ {{ html()->text('new_tab_page') }}
起動時に開くページ {{ html()->select('restore_on_startup', [0 => 'スタートページ', 5 => '新しいタブページ', 1 => '前回終了時のタブ']) }}
プロファイル保存{{ html()->checkbox('save_profile', true) }}
履歴保存{{ html()->checkbox('save_history', true)->class('save_checkbox') }}
パスワード保存{{ html()->checkbox('save_password', true)->class('save_checkbox') }}
Cookie保存{{ html()->checkbox('save_cookie', true)->class('save_checkbox') }}
ブックマーク保存{{ html()->checkbox('save_bookmark', true)->class('save_checkbox') }}
設定ページ非表示{{ html()->checkbox('setting_invisible', false) }}
X-Forwarded-For有効化{{ html()->checkbox('enable_xff') }}
Proxy-Authorization有効化 {{ html()->checkbox('enable_pauth') }}
ユーザ名 :{{ html()->text('pauth_user')->attribute('maxlength', 255) }}
パスワード:{{ html()->text('pauth_pass')->attribute('maxlength', 96) }}
Bookmarkトップフォルダ名 {{ html()->text('bookmark_toplevel')->placeholder('管理対象のブックマーク') }}
Bookmark設定
{{ html()->hidden('bookmarks')->forgetAttribute('id') }}
Bookmarkbar表示設定 {{ html()->select('bookmarkbar_setting', [0 => 'ユーザ操作', 1 => '表示固定', 2 => '非表示固定']) }}
{{ html()->submit('作成') }} {{ html()->form()->close() }} @stop @section('script') @stop