@if(session()->has('specification_type_updated')) @endif @include('includes.form_errors') @can('read', App\Location::class)
@lang('Location:') @if($specification_type->location) {{$specification_type->location->name}} @else @lang('None') @endif

@endcan {!! Form::model($specification_type, ['method'=>'patch', 'action'=>['ManageSpecificationTypesController@update', $specification_type->id], 'onsubmit'=>'submit_button.disabled = true; submit_button.value = "' . __('Please Wait...') . '"; return true;']) !!}
{!! Form::label('name', __('Name:')) !!} {!! Form::text('name', $specification_type->name, ['class'=>'form-control', 'placeholder'=>__('Enter specification type name'), 'required'])!!}
{!! Form::submit(__('Update'), ['class'=>'btn btn-primary col-xs-6 col-sm-6 pull-left', 'name'=>'submit_button']) !!}
{!! Form::close() !!}