@extends('layouts.layout-2') @section('content') @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! Form::open(['url' => route('cms_travel_guide_page_detail', [$id]), 'class' => 'form-horizontal']) !!}

Reiseführer Page @if($id == "new") anlegen @else {{"(ID: ".$id.")"}} verwalten @endif
  {{ __('back') }}

{{ Form::text('title', $travel_guide_page->title, array('placeholder'=>__('Title'), 'class'=>'form-control', 'id'=>'title', 'required'=>true)) }}
{{ Form::text('slug', $travel_guide_page->slug, array('placeholder'=>__('slug'), 'class'=>'form-control', 'id'=>'slug')) }}
{{ Form::text('order', $travel_guide_page->order, array('placeholder'=>__('order'), 'class'=>'form-control', 'id'=>'order')) }}
{{ Form::text('keyword', $travel_guide_page->keyword, array('placeholder'=>__('keyword'), 'class'=>'form-control', 'id'=>'keyword')) }}
{{-- --}}
{{ Form::textarea('content_new', $travel_guide_page->content_new , ['class' => 'form-control summernote']) }}
{{ Form::text('pagetitle', $travel_guide_page->pagetitle, array('placeholder'=>__('pagetitle'), 'class'=>'form-control', 'id'=>'description')) }}
{{ Form::text('description', $travel_guide_page->description, array('placeholder'=>__('description'), 'class'=>'form-control', 'id'=>'description')) }}
{{ Form::text('keywords', $travel_guide_page->keywords, array('placeholder'=>__('meta_keywords'), 'class'=>'form-control', 'id'=>'keywords')) }}

  {{ __('back') }}
{!! Form::close() !!} {{-- --}} @endsection