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

{{ trans('breadcrumbs.Affiliate Settings') }}

{{ trans('affiliate.Users List [Affiliate Partners]') }}

{{ trans('layout.Filter') }}

{{ Form::label('PLAYER', trans('affiliate.Player')) }} {{ Form::text('PLAYER','', ['id' => 'PLAYER', 'class' => 'form-control', 'placeholder' => trans('affiliate.Player')]) }}
{{ Form::label('PARTNER_NAME', trans('affiliate.Partner Name'))}} {{ Form::select('PARTNER_NAME', $partnerName, ' ', ['class' => 'form-control select2', 'placeholder' => trans ('reports.Select option'), 'id' => 'PARTNER_NAME']) }}
{{ Form::label('PERCENTAGE', trans('affiliate.Percentage')) }} {{ Form::text('PERCENTAGE','', ['id' => 'PERCENTAGE', 'class' => 'form-control', 'placeholder' => trans('affiliate.Percentage')]) }}


{{ trans('affiliate.Attach Users Under Affiliate') }}

@csrf
{{ Form::label('PLAYER', trans('affiliate.Player'),['class' => 'required']) }} {{ Form::text('player','', ['id' => 'player', 'class' => 'form-control', 'placeholder' => trans('affiliate.Player'),'maxlength' => 16, 'onblur' => 'checkValidUser()']) }}
{{ Form::label('AFFILIATE_TYPE', trans('affiliate.Affiliate Type'),['class' => 'required'])}} {{ Form::select('partnerType', $partnerType, ' ', ['class' => 'form-control select2', 'placeholder' => trans('reports.Select option'), 'id' => 'partnerType']) }}
{{ Form::label('PARTNER_NAME', trans('affiliate.Select Affiliate Partner'),['class' => 'required'])}} {{ Form::select('partnerName', $partnerList, ' ', ['class' => 'form-control select2', 'placeholder' => trans('reports.Select option'), 'id' => 'partnerName']) }}
{{ Form::label('PERCENTAGE', trans('affiliate.Percentage'),['class' => 'required']) }} {{ Form::text('percentage','', ['id' => 'percentage', 'class' => 'form-control number', 'maxlength' => 3,'placeholder' => trans('affiliate.Percentage')]) }}
@endsection @section('javascript') @include('datatablejs') @stop