@extends('layout.default')
@section('content')
@section('head')
@endsection
アプリケーション名: {{$app_name}}
@if ($errors->any())
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif
{{ html()->form('POST', '/scvmanager/apppath/store')->class('pathlist_form')->open() }}
{{ html()->submit('保存') }}
{{ html()->hidden('add_paths')->forgetAttribute('id') }}
{{ html()->hidden('delete_paths')->forgetAttribute('id') }}
{{ html()->form()->close() }}
@stop
@section('script')
@endsection