{{ $title }}
{{ Form::open(['url' => route('productsgroup.store'), 'method'=>'POST', 'name' => 'productsgroup', 'id' => 'productsgroup']) }}
{{ Form::close() }}
{{ Form::label( __('lbl.group_name') ) }}
{{ Form::text('group_name', old('group_name'), ["class"=>"form-control mxlen_15","placeholder"=> __('lbl.group_name'),"id"=>"group_name","name"=>"group_name"]) }}
@if ($errors->has('group_name'))
{{ $errors->first('group_name') }}
@endif
{{ Form::label(__('lbl.discount')) }}
{{ Form::select('discount', [""=>"---Select Discount---", "1"=>"YES","0"=>"NO"],'',["class"=>"form-control","id"=>"discount","name"=>"discount"]) }}
@if ($errors->has('discount'))
{{ $errors->first('discount') }}
@endif