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

{{ $error }}

@endforeach @endif {{ html()->form('DELETE', route('proxy_settings.destroy', $setting->id))->open() }} {{ html()->hidden('id', $setting->id)->forgetAttribute('id') }} {{ html()->submit('削除')->attribute('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