@Extends($layout->extends) @section($layout->content)

@lang('taxonomy::vocabulary.create.header')

{!! Form::open(array('method'=>'POST', 'url' => action('\Trexology\Taxonomy\Controllers\TaxonomyController@store'))) !!}
{!! Form::label('name', Lang::get('taxonomy::vocabulary.create.label.name'), ['class' => 'control-label']) !!} {!! Form::text('name', NULL, ['class' => 'form-control']) !!} {!! $errors->has('name') ? Form::label('error', $errors->first('name'), array('class' => 'control-label')) : '' !!} {!! $errors->has('name') ? '' : '' !!}
{!! Form::close() !!}
@stop