@extends('layouts.adminLayout.admin_design') @section('content')

{{ $title }}

{{ $title }}

{{ Form::open(['url' => route('prices.store'), 'method'=>'POST', 'name' => 'prices', 'id' => 'prices']) }}
{{ Form::label( __('lbl.name') ) }} {{ Form::text('name', old('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', $sort, ["class"=>"form-control","placeholder"=>__('lbl.sort'),"id"=>"prices_sort","name"=>"sort","min"=>"0"]) }} @if ($errors->has('sort')) {{ $errors->first('sort') }} @endif
{{ Form::button(' Save', ['type' => 'submit', 'class' => 'clickbtncommon btn-sm btn btn-primary '.$add_edit_allowed.''] ) }} {{ __('lbl.cancel') }}
{{ Form::close() }}
@endsection @section('pagescript') {!! Helper::pagejs(['js/backend/prices/add_edit.js']) !!} @stop