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