@extends('layouts.master') @section('content')
@lang('descriptions.surf-tips.crud')
{!! Form::model($entry, ['route' => ['surf-tips.approval-view', $entry->id], 'class' => 'surf-tips-approval-form approval-form', 'enctype' => 'multipart/form-data', 'accept-charset' => 'UTF-8']) !!}
{{ $entry->title }}
{{ $entry->description }}
@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']) !!}
ablehnen
Ändern
Freigeben
{!! Form::close() !!}
@endsection @section('back_button')
Zurück
@endsection