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

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

{!! Form::open(array('method' => 'PUT', 'url' => action('\Trexology\Taxonomy\Controllers\TermsController@update', $term->id), 'id' => 'app-update', 'class' => 'form')) !!}
{!! Form::label('name', Lang::get('taxonomy::terms.edit.label.name'), ['class' => 'control-label']) !!} {!! Form::text('name', $term->name, ['class' => 'form-control']) !!} {!! $errors->has('name') ? Form::label('error', $errors->first('name'), array('class' => 'control-label')) : '' !!} {!! $errors->has('name') ? '' : '' !!}
{!! Form::close() !!}
@stop