@extends('layout.default') @section('head') @endsection @section('content') @if(Session::has('flash_msg'))

{!! Session::get('flash_msg')!!}

@endif @if ($errors->any()) @foreach ($errors->all() as $error)

{{ $error }}

@endforeach @endif {{ html()->form('POST', route('scvx_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_session_cookie', 0)->forgetAttribute('id') }} {{ html()->hidden('save_bookmark', 0)->forgetAttribute('id') }} {{ html()->hidden('hide_internal_pages', 0)->forgetAttribute('id') }} {{ html()->hidden('password_protection_trigger', 0)->forgetAttribute('id') }} {{ html()->hidden('enable_pauth', 0)->forgetAttribute('id') }} {{ html()->hidden('xff_flag', 0)->forgetAttribute('id') }}
設定名 * CHROME_{{ html()->text('name')->required() }}
組織名 * @if (\Auth::user()->organization_id === 1) @else id}}> {{$organizations->name}} @endif
ホームページ {{ html()->text('homepage') }}
スタートページ {{ html()->text('startup_page') }}
ダウンロードフォルダ名 {{ html()->text('downloaddir') }}
プロファイル保存{{ 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('hide_internal_pages', true) }}
パスワード保護についての警告{{ html()->checkbox('password_protection_trigger', true) }}
プロキシ
HTTPプロキシホスト : {{ html()->text('http_proxy_host') }}
HTTPプロキシポート : {{ html()->number('http_proxy_port', null, 0, null, 1) }}
SSLプロキシホスト : {{ html()->text('ssl_proxy_host') }}
SSLプロキシポート : {{ html()->number('ssl_proxy_port', null, 0, null, 1) }}
プロキシ無しで接続 : {{ html()->text('no_proxy_host', 'localhost,127.0.0.1') }}
URL : {{ html()->text('proxy_url') }}
最大タブ数 {{ html()->number('max_tab', 5, 0, 255, 1) }}
許可ポート {{ html()->text('allowed_port')->placeholder('ポート番号') }}
Proxy-Authorization有効化 {{ html()->checkbox('enable_pauth') }}
ユーザ名 :{{ html()->text('pauth_user')->attribute('maxlength', 255) }}
パスワード:{{ html()->text('pauth_pass')->attribute('maxlength', 96) }}
X-Forwarded-For{{ html()->checkbox('xff_flag', false) }}
Bookmarkトップフォルダ名 {{ html()->text('bookmark_toplevel')->placeholder('管理対象のブックマーク') }}
Bookmark設定
No. ブックマーク名 URL フォルダ名
{{ html()->input('submit')->value('作成') }} {{ html()->form()->close() }} @include('managed_bookmarks.modal', ['hideplace' => true]) @stop @section('script') @stop