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

{{ $error }}

@endforeach @endif {{ Form::open(['url' => "/scvmanager/proxy_settings/{$setting->id}", 'method' => 'delete']) }} {{ Form::hidden('id', $setting->id) }} {{ Form::submit('削除', ['onclick' => 'return check();']) }} @if($setting->proxy_type == 1) @elseif($setting->proxy_type == 2) @endif
設定名 {{ $setting->name }}
Proxyタイプ {{ $setting->proxy_type_string }}
Proxyホスト {{ $setting->proxy_host }}
Proxyポート {{ $setting->proxy_port }}
Proxy例外 {{ $setting->proxy_exceptions,20 }}
ProxyスクリプトURL {{ $setting->proxy_script_url }}
@stop @section('script') @stop