@lang('catalogs/iedu_nivel_educativo.document_title')
@include('flash::message')
{{ $iedu_nivel_educativo->name }}
{!! Form::model($iedu_nivel_educativo,['route' => ['iedu-nivel-educativos.update',$iedu_nivel_educativo->id],'method' => 'PUT','class' => 'form-horizontal','role' => 'form','id' => 'form']) !!}
{!! Form::close() !!}
{!! html_entity_decode(Form::label('name', __('catalogs/iedu_nivel_educativo.entry_name') . ' *', ['class' => 'col-md-3 col-xs-12 control-label'])) !!}
{!! Form::text('name', old('name'), ['class' => 'form-control', 'placeholder' => __('catalogs/iedu_nivel_educativo.entry_name'),'required','autofocus']) !!}
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
{!! html_entity_decode(Form::label('code', __('catalogs/iedu_nivel_educativo.entry_code') . ' *', ['class' => 'col-md-3 col-xs-12 control-label'])) !!}
{!! Form::text('code', old('code'), ['class' => 'form-control', 'placeholder' => __('catalogs/iedu_nivel_educativo.entry_code'),'required']) !!}
@if ($errors->has('code'))
{{ $errors->first('code') }}
@endif
{!! html_entity_decode(Form::label('aut_rvoe', __('catalogs/iedu_nivel_educativo.entry_aut_rvoe') . ' *', ['class' => 'col-md-3 col-xs-12 control-label'])) !!}
{!! Form::text('aut_rvoe', old('aut_rvoe'), ['class' => 'form-control', 'placeholder' => __('catalogs/iedu_nivel_educativo.entry_aut_rvoe'),'required']) !!}
@if ($errors->has('aut_rvoe'))
{{ $errors->first('aut_rvoe') }}
@endif
{!! Form::label('sort_order', __('catalogs/iedu_nivel_educativo.entry_sort_order'), ['class' => 'col-md-3 col-xs-12 control-label']) !!}
{!! Form::number('sort_order', old('sort_order'), ['class' => 'form-control', 'placeholder' => __('catalogs/iedu_nivel_educativo.entry_sort_order')]) !!}
{!! html_entity_decode(Form::label('status', __('catalogs/iedu_nivel_educativo.entry_status') , ['class' => 'col-md-3 col-xs-12 control-label'])) !!}