@extends('layouts.master') @section('content')

{{ trans('marketing.Create Bonus') }}

{{ trans('marketing.Campaign Settings') }}

@csrf
{{ Form::label('campaignType', trans('marketing.Campaign Type'), ['class' => 'required']) }} {{ Form::select('campaignType', $campaignTypeList, '5', ['id' => 'campaignType', 'class' => 'form-control select2', 'placeholder' => 'Select']) }}
{{ Form::label('partner', trans('marketing.Partner Name'), ['class' => 'required']) }} {{ Form::select('partner', $partnerList, '', ['id' => 'partner', 'class' => 'form-control select2', 'placeholder' => 'Select']) }}
{{ Form::label('campaignCode', trans('marketing.Campaign Code'), ['class' => 'required']) }} {{ Form::text('campaignCode', '', ['id' => 'campaignCode', 'class' => 'form-control']) }} Generate
{{ Form::label('campaignName', trans('marketing.Campaign Name'), ['class' => 'required']) }} {{ Form::text('campaignName', '', ['id' => 'campaignName', 'class' => 'form-control']) }}
{{ Form::label('status', trans('marketing.Campaign Status'), ['class' => 'required']) }} {{ Form::select('status', $statusList, '', ['id' => 'status', 'class' => 'form-control select2', 'placeholder' => 'Select']) }}
{{ Form::label('publish', 'Publish', ['class' => 'required']) }} {{ Form::select('publish', $publishList, '', ['id' => 'publish', 'class' => 'form-control select2', 'placeholder' => 'Select']) }}
{{ Form::label('campaignDescription', trans('marketing.Campaign Description'), ['class' => 'required']) }} {{ Form::textarea('campaignDescription', '', ['id' => 'campaignDescription', 'class' => 'form-control', 'rows' => 2, 'cols' => 40]) }}
{{ Form::label('startDate', trans('marketing.Start Date'), ['class' => 'required']) }} {{ Form::text('startDate', '', ['class' => 'form-control', 'id' => 'startDate', 'readonly' => 'readonly']) }}
{{ Form::label('endDate', trans('marketing.End Date'), ['class' => 'required']) }} {{ Form::text('endDate', '', ['class' => 'form-control', 'id' => 'endDate', 'readonly' => 'readonly']) }}
{{ Form::label('campaignUrl', trans('marketing.Campaign URL'), ['class' => 'required']) }} {{ Form::text('campaignUrl', '', ['class' => 'form-control', 'id' => 'campaignUrl', 'readonly' => 'readonly']) }}
{{ Form::label('netRake', trans('marketing.Net Rake')) }} {{ Form::text('netRake', '', ['class' => 'form-control', 'id' => 'netRake']) }}
{{ Form::label('Release', trans('marketing.Release %')) }} {{ Form::text('Release', '', ['class' => 'form-control', 'id' => 'Release']) }}

{{ trans('marketing.Payment & Rule Settings') }}

{{ Form::label('conversion', trans('marketing.Payment Type'), ['class' => 'required']) }}

{{ Form::label('currencyType', trans('marketing.Currency Type'), ['class' => 'required']) }} {{ Form::select('currencyType', $currencyTypeList, '', ['id' => 'currencyType', 'class' => 'form-control select2', 'placeholder' => 'Select']) }}

{{ Form::label('promoPercentage', trans('marketing.Promo (%)')) }} {{ Form::text('promoPercentage', '', ['class' => 'form-control number', 'id' => 'promoPercentage', 'maxlength' => '3']) }}
{{ Form::label('cardPercentage', trans('marketing.Credit / Debit Card (%)')) }} {{ Form::text('cardPercentage', '', ['class' => 'form-control number', 'id' => 'cardPercentage', 'maxlength' => '3']) }}
{{ Form::label('netbanking', trans('marketing.Netbanking (%)')) }} {{ Form::text('netbanking', '', ['class' => 'form-control number', 'id' => 'netbanking', 'maxlength' => '3']) }}
{{ Form::label('promoCap', trans('marketing.Promo Cap')) }} {{ Form::text('promoCap', '', ['class' => 'form-control number', 'id' => 'promoCap', 'maxlength' => '8']) }}
{{ Form::label('bonusCap', trans('marketing.Bonus Cap')) }} {{ Form::text('bonusCap', '', ['class' => 'form-control number', 'id' => 'bonusCap', 'maxlength' => '8']) }}
{{ Form::label('minimumDepositAmount', trans('marketing.Minimum Deposit Amount')) }} {{ Form::text('minimumDepositAmount', '', ['class' => 'form-control number', 'id' => 'minimumDepositAmount', 'maxlength' => '8']) }}
{{ Form::label('paymentType', trans('marketing.Payment Type'), ['class' => 'required']) }} {{ Form::select('paymentType', $paymentTypeList, '', ['id' => 'paymentType', 'class' => 'form-control select2', 'placeholder' => 'Select']) }}
{{ Form::label('rule', trans('marketing.Rule'), ['class' => 'required']) }} {{ Form::select('rule', $ruleList, '', ['id' => 'rule', 'class' => 'form-control select2', 'placeholder' => 'Select']) }}
{{ Form::label('promoValue', trans('marketing.Promo Value'), ['class' => 'required']) }} {{ Form::text('promoValue', '', ['class' => 'form-control number', 'id' => 'promoValue', 'maxlength' => '8']) }}

{{ trans('marketing.Frequency Settings') }}

{{ Form::label('frequencyVariation', trans('marketing.Select Variation'), ['class' => 'required']) }}

{{ Form::label('dailyCount', trans('marketing.Daily Count'), ['class' => 'required']) }} {{ Form::select('dailyCount', $dailyCountList, '', ['id' => 'dailyCount', 'class' => 'form-control select2', 'placeholder' => 'Select']) }}
{{ Form::label('maxCab', trans('marketing.Max Cap (Per User)'), ['class' => 'required']) }} {{ Form::text('maxCab', '', ['class' => 'form-control number', 'id' => 'maxCab', 'maxlength' => '8']) }}
{{ Form::label('maxCab', trans('marketing.Select Week Days'), ['class' => 'required']) }}


{{ trans('marketing.User Range Settings') }}

{{ Form::label('expectedUserMin', trans('marketing.Expected User Min'), ['class' => 'required']) }} {{ Form::text('expectedUserMin', '', ['class' => 'form-control number', 'id' => 'expectedUserMin', 'maxlength' => '5']) }}
{{ Form::label('expectedUserMax', trans('marketing.Expected User Max'), ['class' => 'required']) }} {{ Form::text('expectedUserMax', '', ['class' => 'form-control number', 'id' => 'expectedUserMax', 'maxlength' => '5']) }}
@endsection @section('javascript') @stop