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

{{$error}}

@endforeach {{Form::open(['action' => 'IeProfController@store'])}}
IE設定名 IE_{{Form::text('name')}}
プロファイルを保存する {{Form::checkbox('save_profile')}}
WindowsDefender {{Form::select('use_windows_defender', ['利用しない', 'スキャンのみ', 'スキャンしてダウンロード'])}}
ホームページ {{Form::text('homepage')}}
プロキシ設定 プロキシホスト{{Form::text('http_proxy_host')}}
プロキシポート{{Form::number('http_proxy_port', null, ['min' => 0, 'max' => 65535])}}
プロキシ無しで接続{{Form::text('pass_through')}}
{{Form::submit()}} @stop @section('script') @endsection