2019-04-11 16:52:10 +00:00
|
|
|
@extends('settings.layouts.app')
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
<div class="header">
|
|
|
|
<h3 class="header-title">
|
|
|
|
<span>Correct Dataset</span>
|
|
|
|
</h3>
|
|
|
|
</div>
|
2020-01-23 16:52:26 +00:00
|
|
|
|
|
|
|
@if (count($errors) > 0)
|
|
|
|
<div class="alert alert-danger">
|
|
|
|
<strong>Whoops!</strong> There were some problems with your input.<br><br>
|
|
|
|
<ul>
|
|
|
|
@foreach ($errors->all() as $error)
|
|
|
|
<li>{{ $error }}</li>
|
|
|
|
@endforeach
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
@endif
|
2019-04-11 16:52:10 +00:00
|
|
|
|
|
|
|
<div class="pure-g box-content">
|
|
|
|
|
|
|
|
<div class="pure-u-1 pure-u-md-3-3">
|
|
|
|
<div>
|
|
|
|
<a href="{{ route('publish.workflow.editor.index') }}" class="pure-button button-small">
|
|
|
|
<i class="fa fa-chevron-left"></i>
|
|
|
|
<span>BACK</span>
|
|
|
|
</a>
|
|
|
|
</div>
|
2020-01-23 16:52:26 +00:00
|
|
|
<div id="app1">
|
2019-04-11 16:52:10 +00:00
|
|
|
{!! Form::model($dataset, ['method' => 'POST', 'route' => ['publish.workflow.editor.update', $dataset->id], 'class' => 'pure-form', 'enctype' => 'multipart/form-data' ]) !!}
|
|
|
|
@include('workflow/editor/_form', ['submitButtonText' => 'Edit Dataset', 'bookLabel' => 'Edit Dataset.'])
|
2020-01-23 16:52:26 +00:00
|
|
|
{{-- @include('errors._errors') --}}
|
|
|
|
|
|
|
|
<!-- client errors -->
|
|
|
|
<div v-if="errors.items.length > 0">
|
|
|
|
<b>Please correct the following error(s):</b>
|
|
|
|
<ul class="alert validation-summary-errors">
|
|
|
|
<li style="margin-left:5px;" v-for="error in errors.items">@{{ error.msg }}</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
2019-04-11 16:52:10 +00:00
|
|
|
{!! Form::close() !!}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
2020-01-23 16:52:26 +00:00
|
|
|
@stop
|
|
|
|
|
|
|
|
@section('after-scripts')
|
|
|
|
<script>
|
|
|
|
window.Laravel = <?php echo json_encode([
|
|
|
|
'csrf_token' => csrf_token(),
|
|
|
|
'form' => $dataset,
|
|
|
|
'titleTypes' => $titleTypes,
|
|
|
|
'descriptionTypes' => $descriptionTypes,
|
2020-05-05 20:13:10 +00:00
|
|
|
'contributorTypes'=> $contributorTypes,
|
2020-10-22 14:36:43 +00:00
|
|
|
'nameTypes' => $nameTypes,
|
2020-01-23 16:52:26 +00:00
|
|
|
'languages' => $languages,
|
2020-01-28 16:59:52 +00:00
|
|
|
'messages' => $messages,
|
2020-01-23 16:52:26 +00:00
|
|
|
'projects' => $projects,
|
|
|
|
'licenses' => $licenses,
|
|
|
|
'checkeds' => $checkeds,
|
|
|
|
'referenceTypes' => $referenceTypes,
|
|
|
|
'relationTypes' => $relationTypes
|
|
|
|
]); ?>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/javascript" src="{{ asset('backend/publish/mainEditDataset.js') }}"></script>
|
2019-04-11 16:52:10 +00:00
|
|
|
@stop
|