@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']) !!}
@if ($entry->title !== "")
{{ $entry->title }}
@endif @if ($entry->description !== "")
{{ substr($entry->description, 0, 150)." ..." }}
@endif
zoom_in
@if ($entry->url !== "")
Vorschau Link: @if ($entry->url_description !== "") {{ $entry->url_description }} @else {{ $entry->url }} @endif
@endif @include ('partials.validity')
@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