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

{{ $error }}

@endforeach @endif {{ html()->form('POST', route('visionprof.store'))->open() }}
設定名 * {{ html()->text('name')->required() }}
ボリュームサイズ {{ html()->number('volume_mb', 100, 100, $volume_max)->required() }} MB
許可アプリ設定*
許可アプリ


アプリ一覧
デスクトップショートカット設定
VPN設定
{{ html()->select('vpn_settings_select', $vpn_settings->pluck('name', 'id')->prepend('選択してください', '0'), 0) }}
    VPNサーバアドレス(ローカル) {{ html()->text('vpn_ipaddr')->placeholder('例) 192.168.1.100') }}
    VPNサーバアドレス(グローバル) {{ html()->text('global_vpn_ipaddr')->placeholder('例) 52.52.52.168:15000') }}
    VPNインターフェース名 {{ html()->text('vpn_nic_name')->placeholder('wg0') }}
    DNSサーバアドレス {{ html()->text('dns_server_ipaddr')->placeholder('例) 8.8.8.8') }}
    許可ホスト {!! html()->textarea('allowed_hosts')->placeholder("例) 192.168.50.1\r\n例) 192.168.50.10") !!}
    共有フォルダ
    プロキシ設定
    壁紙 {{ html()->hidden('wallpaper_id', old('wallpaper_id', $visionprofile->wallpaper_id))->forgetAttribute('id') }}
    @foreach($wallpapers as $wallpaper)
    @if($wallpaper->fileUrl) {{ $wallpaper->filename }} @endif
    {{ $wallpaper->filename }}
    @endforeach
    {{ html()->hidden('allowed_apps')->forgetAttribute('id') }} {{ html()->hidden('denied_apps')->forgetAttribute('id') }} {{ html()->submit('作成') }} {{ html()->form()->close() }} @stop @section('script') @stop