{{ $title }}
{{ Form::open(['url' => route('prices.update', $prices['id']), 'method'=>'PATCH', 'name' => 'prices', 'id' => 'prices']) }}
{{ method_field('PATCH') }}
{{ Form::hidden('id',$prices['id'],['name'=>'id']) }}
{{ Form::close() }}
{{ Form::label( __('lbl.name') ) }}
{{ Form::text('name', $prices['name'], ["class"=>"form-control mxlen_15","placeholder"=>__('lbl.name'),"id"=>"name","name"=>"name"]) }}
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
{{ Form::label( __('lbl.sort') ) }}
{{ Form::number('sort', $prices['sort'], ["class"=>"form-control","placeholder"=>__('lbl.sort'),"id"=>"sort","name"=>"sort","min"=>"0"]) }}
@if ($errors->has('sort'))
{{ $errors->first('sort') }}
@endif
{{ Form::button(' '. __('lbl.save'), ['type' => 'submit', 'class' => 'clickbtncommon btn-sm btn btn-primary '.$add_edit_allowed.''] ) }}
{{ __('lbl.cancel') }}