@extends('layouts.container')
@section('title', 'Content Management')
@section('title_description')
Edit Content: {{ $content->title }}
@endsection
@section('css')
@endsection
@section('body-class', 'skin-blue')
@section('content')
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
{{ Form::model($content, array('route' => array('content-edit-data', $content->id), 'method' => 'PUT')) }}
@include('admin.content.form')
{{ Form::close() }}
@endsection
@section('js')
@endsection