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

{{ $error }}

@endforeach @endif {{ html()->modelForm($setting, 'PUT', route('proxy_settings.update', $setting->id))->open() }}
設定名 * PROXY_{{ html()->text('name', preg_replace('/^PROXY_/', '', $setting->name))->required() }}
Proxyタイプ {{ html()->select('proxy_type', [1 => 'サーバ指定', 2 => 'PACファイル']) }}
Proxyホスト* {{ html()->text('proxy_host') }}
Proxyポート * {{ html()->number('proxy_port') }}
Proxy例外 {{ html()->text('proxy_exceptions') }}
ProxyスクリプトURL * {{ html()->text('proxy_script_url') }}
{{ html()->submit('変更') }} @stop @section('script') @stop