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

{{ $error }}

@endforeach @endif {{ html()->form('POST', route('proxy_settings.store'))->open() }}
設定名 * PROXY_{{ html()->text('name')->required() }}
Proxyタイプ {{ html()->select('proxy_type', [1 => 'サーバ指定', 2 => 'PACファイル']) }}
Proxyホスト * {{ html()->text('proxy_host') }}
Proxyポート * {{ html()->number('proxy_port', null, 1, 65535 ) }}
Proxy例外 {{ html()->text('proxy_exceptions') }}
ProxyスクリプトURL * {{ html()->text('proxy_script_url') }}
{{ html()->submit('作成') }} @stop @section('script') @stop