@extends('layout.default') @section('head') @endsection @section('content')
{!! Session::get('flash_msg')!!}
@endif @if ($errors->any()) @foreach ($errors->all() as $error){{ $error }}
@endforeach @endif {{ html()->modelForm($setting, 'PUT', route('scvx_chrome_settings.update', $setting->id))->open() }} {{ html()->hidden('id', $setting->id)->forgetAttribute('id') }}| 設定名 * | CHROME_{{ html()->text('name', preg_replace('/^CHROME_/', '', $setting->name))->required() }} |
|---|---|
| 組織名 * | @if (\Auth::user()->organization_id === 1) @else id}}> {{$organizations->name}} @endif |
| ホームページ | {{ html()->text('homepage') }} |
| スタートページ | {{ html()->text('startup_page') }} |
| ダウンロードフォルダ名 | {{ html()->text('downloaddir') }} |
| プロファイル保存 | {{ html()->hidden('save_profile', 0)->forgetAttribute('id') }}{{ html()->checkbox('save_profile') }} |
| 履歴保存 | {{ html()->hidden('save_history', 0)->forgetAttribute('id') }}{{ html()->checkbox('save_history')->class('save_checkbox') }} |
| パスワード保存 | {{ html()->hidden('save_password', 0)->forgetAttribute('id') }}{{ html()->checkbox('save_password')->class('save_checkbox') }} |
| Cookie保存 | {{ html()->hidden('save_cookie', 0)->forgetAttribute('id') }} {{ html()->hidden('save_session_cookie', 0)->forgetAttribute('id') }}{{ html()->checkbox('save_cookie')->class('save_checkbox') }} |
| ブックマーク保存 | {{ html()->hidden('save_bookmark', 0)->forgetAttribute('id') }}{{ html()->checkbox('save_bookmark')->class('save_checkbox') }} |
| 設定ページ非表示 | {{ html()->hidden('hide_internal_pages', 0)->forgetAttribute('id') }}{{ html()->checkbox('hide_internal_pages') }} |
| パスワード保護についての警告 | {{ html()->hidden('password_protection_trigger', 0)->forgetAttribute('id') }}{{ html()->checkbox('password_protection_trigger') }} |
| プロキシ | |
| HTTPプロキシホスト : {{ html()->text('http_proxy_host') }} | |
| HTTPプロキシポート : {{ html()->number('http_proxy_port', null, 0, null, 1) }} | |
| {{ html()->checkbox('same_proxy') }} | |
| SSLプロキシホスト : {{ html()->text('ssl_proxy_host') }} | |
| SSLプロキシポート : {{ html()->number('ssl_proxy_port', null, 0, null, 1) }} | |
| プロキシ無しで接続 : {{ html()->text('no_proxy_host') }} | |
| URL : {{ html()->text('proxy_url') }} | |
| 最大タブ数 | {{ html()->number('max_tab', null, 0, 255, 1) }} |
| 許可ポート | {{ html()->text('allowed_port')->placeholder('ポート番号') }} |
| X-Forwarded-For有効化 | {{ html()->hidden('xff_flag', 0)->forgetAttribute('id') }}{{ html()->checkbox('xff_flag') }} |
| Proxy-Authorization有効化 | {{ html()->hidden('enable_pauth', 0)->forgetAttribute('id') }}
{{ html()->checkbox('enable_pauth') }}
ユーザ名 :{{ html()->text('pauth_user')->attribute('maxlength', 255) }}
パスワード:{{ html()->text('pauth_pass')->attribute('maxlength', 96) }} |
| Bookmarkトップフォルダ名 | {{ html()->text('bookmark_toplevel')->placeholder('管理対象のブックマーク') }} |