{!! Form::label('type', 'Type',['class'=>'required']) !!}
{!! Form::select('type',[1=>'Pop Up Ads' , 2 => 'Pre-Match Ads'], null, ['class' => 'form-control', 'id'=> 'typeSelect'] ) !!}
{!! Form::label('title', 'Title',['class'=>'required']) !!}
{!! Form::text('title', null, ['class' => 'form-control']) !!}
{!! Form::label('description', 'Description',['class'=>'required']) !!}
{!! Form::textarea('description', null, ['class' => 'form-control', 'rows'=> "5"]) !!}
{!! Form::label('gender', 'Gender') !!}
{{Form::select('gender',$genders,$selectedGender,array('class' => 'form-control','multiple'=>'multiple','name'=>'gender[]','id'=>'gender'))}}
{!! Form::label('start_at', 'Start At',['class'=>'required']) !!}
{!! Form::text('start_at', $startAt, ['class' => 'form-control','id'=>'start_at','onkeydown'=>'return false','autocomplete'=>'off']) !!}
@push('page_scripts')
@endpush
{!! Form::label('expires_at', 'Expires At',['class'=>'required']) !!}
{!! Form::text('expires_at', $expiresAt, ['class' => 'form-control','id'=>'expires_at','onkeydown'=>'return false','autocomplete'=>'off']) !!}
@push('page_scripts')
@endpush
{!! Form::label('min_age', 'Min Age') !!}
{!! Form::number('min_age', null, ['class' => 'form-control']) !!}
{!! Form::label('max_age', 'Max Age') !!}
{!! Form::number('max_age', null, ['class' => 'form-control']) !!}
{!! Form::label('address', 'Address (if you left blank all audience will be target)') !!}
{!! Form::text('address', null, ['class' => 'form-control', 'id' => 'address']) !!}
{!! Form::hidden('latitude', null, ['class' => 'form-control latitude_val']) !!}
{!! Form::hidden('longitude', null, ['class' => 'form-control longitude_val']) !!}
{!! Form::label('radius','Radius') !!}
{!! Form::number('radius', null, ['class' => 'form-control']) !!}
{{--
{!! Form::label('user_limit', 'User Limit',['class'=>'required']) !!}
{!! Form::number('user_limit', null, ['class' => 'form-control']) !!}
--}}
{!! Form::label('max_impression_limit', 'Max Impression Limit (No. of views advertisement will allow)',['class'=>'required']) !!}
{!! Form::number('max_impression_limit', null, ['class' => 'form-control']) !!}
{!! Form::label('max_click_limit', 'Max Click Limit (No. of clicks advertisement will allow)',['class'=>'required']) !!}
{!! Form::number('max_click_limit', null, ['class' => 'form-control']) !!}
{!! Form::label('url', 'Url',['class'=>'required']) !!}
{!! Form::text('url', null, ['class' => 'form-control']) !!}
{!! Form::label('time_frame', 'Time Frame (Time the advertisement will run)',['class'=>'required']) !!}
{!! Form::number('time_frame', null, ['class' => 'form-control']) !!}
{!! Form::label('message', 'Message',['class'=>'required']) !!}
{!! Form::textarea('message', null, ['class' => 'form-control', 'rows'=> "5"]) !!}