@extends('admin/layouts/default') {{-- Web site Title --}} @section('title') @lang('blog/title.edit') @parent @stop {{-- Content --}} @section('content') @lang('blog/title.edit') @lang('general.dashboard') @lang('blog/title.blog') @lang('blog/title.edit') @lang('blogcategory/title.edit') {!! Form::model($blogcategory, ['url' => URL::to('admin/blogcategory') . '/' . $blogcategory->id, 'method' => 'put', 'class' => 'form-horizontal']) !!} @lang('blogcategory/form.name') {!! Form::text('title', null, ['class' => 'form-control', 'placeholder'=>trans('blogcategory/form.categoryname')]) !!} {!! $errors->first('title', ':message') !!} @lang('button.cancel') @lang('button.update') {!! Form::close() !!} @stop