@extends('admin.layouts.default') {{-- Web site Title --}} @section('title') @lang('blogcategory/title.create') :: @parent @stop {{-- Content --}} @section('content') @lang('blogcategory/title.create') Dashboard @lang('blogcategory/title.blogcategories') @lang('blogcategory/title.create') @lang('blogcategory/title.create') {!! Form::open([ 'url' => URL::to('admin/blogcategory'), 'method' => 'post', 'class' => 'form-horizontal', 'files' => true, ]) !!} @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.save') {!! Form::close() !!} @stop