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