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

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

{!! Form::model($vocabulary, array('method' => 'PUT', 'url' => action('\Trexology\Taxonomy\Controllers\TaxonomyController@update', $vocabulary->id), 'id' => 'app-create', 'class' => 'form')) !!}
{!! 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