@extends('admin.template.master') @section('stylesheets') @endsection @section('title')

CMS Editor insert and update cms editor

@endsection @section('main-content')

Entry

{!! Form::open(['method' => 'put','url' => '/admin/footer/'. $footer_content->footer_id]) !!}
{!! Form::label('First Content') !!} {!! Form::textarea('first_content',$footer_content->first_content, ['class' => 'form-control', 'id' => 'first_content']) !!} @if ($errors->has('first_content')) {!! $errors->first('first_content') !!}@endif
{!! Form::label('Second Content') !!} {!! Form::textarea('second_content', $footer_content->second_content, ['class' => 'form-control', 'id' => 'second_content']) !!} @if ($errors->has('second_content')) {!! $errors->first('second_content') !!}@endif
{!! Form::label('Third Content') !!} {!! Form::textarea('third_content', $footer_content->third_content, ['class' => 'form-control', 'id' => 'third_content']) !!} @if ($errors->has('third_content')) {!! $errors->first('third_content') !!}@endif
{!! Form::label('Fourth Content') !!} {!! Form::textarea('fourth_content', $footer_content->fourth_content, ['class' => 'form-control', 'id' => 'fourth_content']) !!} @if ($errors->has('fourth_content')) {!! $errors->first('fourth_content') !!}@endif
{!! Form::close() !!}
@endsection @section('javascripts') {!! Html::script('assets/admin/bower_components/ckeditor/ckeditor.js') !!} @endsection