@extends('layout.default') @section('head') @endsection @section('content')
{{ $error }}
@endforeach @endif {{ Form::open(['action' => 'ChromeSettingController@store']) }}設定名 * | CHROME_{{ Form::text('name', null, ['required' => 'required']) }} |
---|---|
ホームページ | {{ Form::text('homepage') }} |
スタートページ | {{ Form::text('startup_page') }} |
新しいタブページ | {{ Form::text('new_tab_page') }} |
プロファイル保存 | {{ Form::hidden('save_profile', 0) }}{{ Form::checkbox('save_profile', 1, true, ['id' => 'save_profile']) }} |
履歴保存 | {{ Form::hidden('save_history', 0) }}{{ Form::checkbox('save_history', 1, true, ['class' => 'save_checkbox']) }} |
パスワード保存 | {{ Form::hidden('save_password', 0) }}{{ Form::checkbox('save_password', 1, true, ['class' => 'save_checkbox']) }} |
Cookie保存 | {{ Form::hidden('save_cookie', 0) }}{{ Form::checkbox('save_cookie', 1, true, ['class' => 'save_checkbox']) }} |
ブックマーク保存 | {{ Form::hidden('save_bookmark', 0) }}{{ Form::checkbox('save_bookmark', 1, true, ['class' => 'save_checkbox']) }} |
設定ページ非表示 | {{ Form::hidden('hide_internal_pages', 0) }}{{ Form::checkbox('hide_internal_pages') }} |
X-Forwarded-For有効化 | {{ Form::hidden('enable_xff', 0) }}{{ Form::checkbox('enable_xff') }} |
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' => '管理対象のブックマーク']) }} |
Bookmark設定 | {{ Form::button('削除', [ 'id' => 'bookmark-del' ]) }} {{ Form::hidden('bookmarks') }} |