@include('pricing.pricing-menu')
{!! Form::open(array('route' =>'pricings.store','method' =>'POST','role' =>'form','autocomplete'=>'off','class'=>'row')) !!}
{!! Form::close() !!}
{!! Form::select('price_type',pricingfor(),null, array('id' => 'price_type', 'class' => 'form-control select2', 'placeholder' => trans('Select'),'required','onChange'=>'pricingType(this.value)')) !!}
@if ($errors->has('price_type'))
{{ $errors->first('price_type') }}
@endif
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif
@if ($errors->has('price'))
{{ $errors->first('price') }}
@endif
{!! Form::select('country',$country,null, array('id' => 'country', 'class' => 'form-control select2', 'placeholder' => trans('Select Country'),'required')) !!}
@if ($errors->has('country'))
{{ $errors->first('country') }}
@endif
@if ($errors->has('details'))
{{ $errors->first('details') }}
@endif