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

{{ $error }}

@endforeach @endif {{ Form::open(['action' => 'EdgeSettingController@store']) }} {{ Form::hidden('save_profile', 0) }} {{ Form::hidden('save_history', 0) }} {{ Form::hidden('save_password', 0) }} {{ Form::hidden('save_cookie', 0) }} {{ Form::hidden('save_bookmark', 0) }} {{ Form::hidden('hide_internal_pages', 0) }} {{ Form::hidden('enable_xff', 0) }} {{ Form::hidden('enable_pauth', 0) }}
設定名 * EDGE_{{ Form::text('name', null, ['required' => 'required']) }}
ホームページ {{ Form::text('homepage') }}
スタートページ {{ Form::text('startup_page') }}
新しいタブページ {{ Form::text('new_tab_page') }}
プロファイル保存{{ Form::checkbox('save_profile', 1, true, ['id' => 'save_profile']) }}
履歴保存{{ Form::checkbox('save_history', 1, true, ['class' => 'save_checkbox']) }}
パスワード保存{{ Form::checkbox('save_password', 1, true, ['class' => 'save_checkbox']) }}
Cookie保存{{ Form::checkbox('save_cookie', 1, true, ['class' => 'save_checkbox']) }}
ブックマーク保存{{ Form::checkbox('save_bookmark', 1, true, ['class' => 'save_checkbox']) }}
設定ページ非表示{{ Form::checkbox('hide_internal_pages') }}
X-Forwarded-For有効化{{ Form::checkbox('enable_xff') }}
Proxy-Authorization有効化 {{ 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') }}
{{ Form::submit('作成') }} {{ Form::close() }} @stop @section('script') @stop