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

{{ $error }}

@endforeach @endif {{ html()->modelForm($setting, 'PUT', route('edge_settings.update', $setting->id))->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('hide_internal_pages', 0)->forgetAttribute('id') }} {{ html()->hidden('enable_xff', 0)->forgetAttribute('id') }} {{ html()->hidden('enable_pauth', 0)->forgetAttribute('id') }}
設定名 * EDGE_{{ html()->text('name', preg_replace('/^EDGE_/', '', $setting->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') }}
履歴保存{{ html()->checkbox('save_history')->class('save_checkbox') }}
パスワード保存{{ html()->checkbox('save_password')->class('save_checkbox') }}
Cookie保存{{ html()->checkbox('save_cookie')->class('save_checkbox') }}
ブックマーク保存{{ html()->checkbox('save_bookmark')->class('save_checkbox') }}
設定ページ非表示{{ html()->checkbox('hide_internal_pages') }}
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