{!! Form::number('points', null , ['class' => "touchspin", 'init-val' => null ]) !!}
{!! Form::number('number_of_orders', null , ['class' => "touchspin", 'init-val' => null ]) !!}
{!! Form::text('start_at',isset($point_offer) && $point_offer->start_at ? $point_offer->start_at->format("m/d/Y") : date("m/d/Y") , ['class' => 'form-control class_date' , 'placeholder' => trans('dashboard.point_offer.start_at')]) !!}
{!! Form::text('end_at',isset($point_offer) && $point_offer->end_at ? $point_offer->end_at->format("m/d/Y") : date("m/d/Y") , ['class' => 'form-control class_date' , 'placeholder' => trans('dashboard.point_offer.end_at')]) !!}
{!! Form::radio('is_active', 1, !isset($client) || (isset($client) && $client->is_active) ? 'checked' : null , ['class' => 'custom-control-input' , 'id' => 'is_active']) !!}
{!! Form::radio('is_active', 0, isset($client) && !$client->is_active ? 'checked' : null , ['class' => 'custom-control-input' , 'id' => 'is_deactive']) !!}
{!! Form::radio('user_type', "client", !isset($app_offer) || (isset($app_offer) && $app_offer->user_type == "client") ? 'checked' : null , ['class' => 'custom-control-input' , 'id' => 'client']) !!}
{!! Form::radio('user_type', "driver", isset($app_offer) && $app_offer->user_type == "driver" ? 'checked' : null , ['class' => 'custom-control-input' , 'id' => 'driver']) !!}
{!! Form::radio('user_type', "client_and_driver", isset($app_offer) && $app_offer->user_type == "client_and_driver" ? 'checked' : null , ['class' => 'custom-control-input' , 'id' => 'client_and_driver']) !!}
{!! Form::textarea("fcm_notification", null, ['class' => 'form-control' , 'placeholder' => trans('dashboard.point_offer.fcm_notification')]) !!}
@section('vendor_styles') @endsection @section('page_styles') @endsection @section('vendor_scripts') @endsection @section('page_scripts') @endsection