@extends('layouts.master') @section('content')
@lang('descriptions.article-news.crud')
{!! Form::model($entry, ['route' => ['article-news.approval-view', $entry->id], 'class' => 'article-news-approval-form approval-form', 'enctype' => 'multipart/form-data', 'accept-charset' => 'UTF-8']) !!}
{{ $entry->title }}
{{ substr($entry->description, 0, 150)." ..." }}
Laufzeit des Inhaltes
Von
{!! Form::text('valid_start', null, ['id' => 'valid-start-date', 'disabled' => 'disabled']) !!} today
Bis
{!! Form::text('valid_end', null, ['id' => 'valid-end-date', 'disabled' => 'disabled']) !!} today
@if (isset($entry->remark))
Hinweis zur Freigabe:
{{ $entry->remark }}
@endif
Ergänzende Hinweise (optional)
{!! Form::text('remark', '', ['class' => 'form-control']) !!}
{!! Form::checkbox('approve', 1, null, ['id' => 'approval-state', 'class' => 'hidden']) !!}
Ändern
{!! Form::close() !!}
@endsection @section('back_button') Zurück @endsection