@extends('settings.layouts.app') @section('content')

Publish reviewed dataset

BACK
{!! Form::model($dataset, [ 'method' => 'POST', 'route' => ['publish.workflow.editor.publishUpdate', $dataset->id], 'id' => 'publishForm', 'class' => 'pure-form', 'enctype' => 'multipart/form-data', 'v-on:submit.prevent' => 'checkForm']) !!}

Selected Dataset

{{ $dataset->id }} @foreach($dataset->titles as $title)
{{ $title->value }}
@endforeach
@foreach($dataset->persons as $author) {{ $author->full_name }} @endforeach
{!! Form::label('publisher_name', 'Publisher Name') !!} {!! Form::text('publisher_name', 'Geologische Bundesanstalt Österreich', ['readonly', 'class' => 'pure-u-23-24', ]) !!}

Are you sure you want to publish the selected dataset?

{{-- --}}

{!! Form::close() !!}
@stop @section('after-scripts') @stop