@extends('layouts.master') @section('content')
@lang('descriptions.monothema-simple-voting.crud')
{!! Form::model($entry, ['route' => ['monothema-simple-voting.approval-view', $entry->id], 'class' => 'monothema-simple-voting-approval-form approval-form', 'enctype' => 'multipart/form-data', 'accept-charset' => 'UTF-8']) !!}
@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