@extends('admin/layouts/default') {{-- Web site Title --}} @section('title') @lang('blog/title.edit') @parent @stop {{-- Content --}} @section('content')

@lang('blog/title.edit')

@lang('blogcategory/title.edit')

{!! Form::model($blogcategory, ['url' => URL::to('admin/blogcategory') . '/' . $blogcategory->id, 'method' => 'put', 'class' => 'form-horizontal']) !!}
{!! Form::text('title', null, ['class' => 'form-control', 'placeholder'=>trans('blogcategory/form.categoryname')]) !!}
{!! $errors->first('title', ':message') !!}
@lang('button.cancel')
{!! Form::close() !!}
@stop