@if(session()->has('specification_type_created'))
{{session('specification_type_created')}}
@endif
@include('includes.form_errors')
{!! Form::open(['method'=>'post', 'action'=>'ManageSpecificationTypesController@store', 'onsubmit'=>'submit_button.disabled = true; submit_button.value = "' . __('Please Wait...') . '"; return true;']) !!}
{!! Form::label('name', __('Name:')) !!}
{!! Form::text('name', null, ['class'=>'form-control', 'placeholder'=>__('Example: Color, Size, Weight'), 'required']) !!}
{!! Form::submit(__('Add Specification Type'), ['class'=>'btn btn-primary btn-block', 'name'=>'submit_button']) !!}
{!! Form::close() !!}