{!! Form::label('name','Name') !!}
{!! Form::text('name' , @$list->name , ['class' => 'form-control','placeholder' => 'Name','required'=>'true']) !!}
{!! Form::label('type','Condition') !!}
{!! Form::select('type', ['address' => 'Address', 'card_total' => 'Cart Total', 'has_card_item' => 'Has Cart Item'] , @$list->type , ['class' => 'form-control condition','id' => 'condition']) !!}
{!! Form::label('condition','Condition') !!}
{!! Form::select('condition', ['greater' => '>', 'equal' => '=', 'less' => '<'] , @$settings['condition'] , ['class' => 'form-control','id' => 'condition']) !!}
{!! Form::label('amount','Amount') !!}
{!! Form::text('amount' , @$settings['amount'] , ['class' => 'form-control','placeholder' => 'Amount','required'=>'true']) !!}
{!! Form::label('country','Country') !!}
{!! Form::select('country', getCountriesList() , @$settings['country'] , ['class' => 'form-control','id' => 'country']) !!}
@if(@$list->id)
@endif