@extends('layouts.layout-2') @section('content')

Buchnungen PDF Vorlage / {{ $general_name->name }}
zurück

{!! Form::open(['url' => route('cms_booking_all_detail', [$general_name->id]), 'class' => 'form-horizontal']) !!} @if(count($contents)) @php($i = 1)
@foreach($contents as $content) @endforeach
# Abschnitte #
{{ $i++ }} {{ Form::text('contents['.$content->id.'][name]', $content->name, array('placeholder'=>__('Abschnitt*'), 'class'=>'form-control', 'id'=>'contents_'.$content->id.'_name', 'required')) }}
  {{ Form::textarea('contents['.$content->id.'][full_text]', $content->getContent(), array('class'=>'form-control autoExpand summernote-air', 'id'=>'contents_'.$content->id.'_name', 'rows'=>'1', 'data-min-rows'=>'1')) }}
@endif
 
{!! Form::close() !!}
@endsection