@extends('layouts.theme') @section('content')
Edit {{ $content->api }} content
{!! Bootstrap::startForm() !!} {!! Form::model($content, ['method' => 'PUT', 'route' => ['admin.pages', $content->id], 'class' => 'form-group', 'id' => 'this-form']) !!} {!! Bootstrap::formTextarea('Content', 'content', null, $content->content, $errors->has('content')) !!} {!! Bootstrap::formSubmit('Submit', true) !!} {!! Form::close() !!} {!! Bootstrap::endForm() !!}
@endsection