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

@lang('blogcategory/title.create')

@lang('blogcategory/title.create')

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