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

{{ trans('breadcrumbs.Create Tournament') }}

{{ trans('tournament.Tournament Information') }}

@csrf
{{ Form::label('tournamentName', trans('tournament.Tournament Name'), ['class' => 'required']) }} {{ Form::text('tournamentName', '', ['id' => 'tournamentName', 'class' => 'form-control', 'placeholder' => trans('tournament.Tournament Name')]) }}
{{ Form::label('tournamentType', trans('tournament.Tournament Type'), ['class' => 'required'])}} {{ Form::select('tournamentType', $tournamentType, '', ['class' => 'form-control select2', 'id' => 'tournamentType', 'placeholder' => 'Select']) }}
{{ Form::label('gameType', trans('tournament.Game Type'), ['class' => 'required'])}} {{ Form::select('gameType', $gameType, '', ['class' => 'form-control select2', 'id' => 'gameType', 'placeholder' => 'Select']) }}
{{ Form::label('status', trans('game.Status'), ['class' => 'required'])}} {{ Form::select('status', $status, '', ['class' => 'form-control select2', 'id' => 'status', 'placeholder' => 'Select']) }}
{{ Form::label('limit', trans('game.Limit'), ['class' => 'required'])}} {{ Form::select('limit', $limit, '', ['class' => 'form-control select2', 'id' => 'limit', 'placeholder' => 'Select']) }}
{{ Form::label('serverType', trans('tournament.Server'), ['class' => 'required'])}} {{ Form::select('serverType', $serverType, '', ['class' => 'form-control select2', 'id' => 'server', 'placeholder' => 'Select']) }}
{{ Form::label('mainTournament', trans('tournament.Main Tournament'), ['class' => 'required'])}} {{ Form::select('mainTournament', $mainTournament, '', ['class' => 'form-control select2', 'id' => 'mainTournament', 'placeholder' => 'Select']) }}
{{ Form::label('textColor', trans('tournament.Tournament Text Color'))}} {{ Form::select('textColor', $textColor, '', ['class' => 'form-control select2', 'id' => 'textColor', 'placeholder' => 'Select']) }}

   
{{ Form::label('tournamentDescription', trans('tournament.Tournament Description'), ['class' => 'required']) }} {{ Form::textarea('tournamentDescription', '',['class'=>'form-control', 'id' => 'tournamentDescription', 'rows' => 2, 'cols' => 40, 'maxlength' => '150']) }}

{{ trans('tournament.Timings') }}

{{ Form::label('registrationStartTime', trans('tournament.Registration Start Time'), ['class' => 'required']) }} {{ Form::text('registrationStartTime', '', ['class' => 'form-control', 'id' => 'registrationStartTime', 'readonly' => 'readonly']) }}
{{ Form::label('tournamentStartTime', trans('tournament.Tournament Start Time'), ['class' => 'required']) }} {{ Form::text('tournamentStartTime', '', ['class' => 'form-control', 'id' => 'tournamentStartTime', 'readonly' => 'readonly']) }}

{{ Form::label('registrationEnd', trans('tournament.Registration End'), ['class' => 'required'])}} {{ Form::text('registrationEnd', '', ['class' => 'form-control number', 'id' => 'registrationEnd', 'maxlength' => '3']) }}

{{ trans('tournament.Players') }}

{{ Form::label('playersPerTable', trans('tournament.Players Per Table'), ['class' => 'required'])}} {{ Form::select('playersPerTable', $playersPerTable, '', ['class' => 'form-control select2', 'id' => 'playersPerTable', 'placeholder' => 'Select']) }}
{{ Form::label('minimumPlayers', trans('tournament.Minimum'), ['class' => 'required'])}} {{ Form::text('minimumPlayers', '', ['class' => 'form-control number', 'id' => 'minimumPlayers', 'maxlength' => '3']) }}
{{ Form::label('maximumPlayers', trans('tournament.Maximum'), ['class' => 'required'])}} {{ Form::text('maximumPlayers', '', ['class' => 'form-control number', 'id' => 'maximumPlayers', 'maxlength' => '5']) }}

{{ trans('tournament.Entry Criteria') }}

{{ Form::label('cashType', trans('tournament.Cash Type'), ['class' => 'required'])}} {{ Form::select('cashType', $cashType, '', ['class' => 'form-control select2', 'id' => 'cashType', 'placeholder' => 'Select']) }}
{{ Form::label('balanceType', trans('tournament.Balance Type'), ['class' => 'required'])}}

{{ Form::label('amount', trans('tournament.Amount'), ['class' => 'required']) }} {{ Form::text('amount', '', ['class' => 'form-control number', 'id' => 'amount', 'maxlength' => '5']) }}
{{ Form::label('commission', trans('tournament.Commission %'), ['class' => 'required'])}} {{ Form::text('commission', '', ['class' => 'form-control number', 'id' => 'commission', 'maxlength' => '3']) }}
{{ Form::label('bountyAmount', trans('tournament.Bounty Amount'), ['class' => 'required']) }} {{ Form::text('bountyAmount', '', ['class' => 'form-control number', 'id' => 'bountyAmount', 'maxlength' => '5']) }}
{{ Form::label('bountyCommission', trans('tournament.Bounty Commission %'), ['class' => 'required'])}} {{ Form::text('bountyCommission', '', ['class' => 'form-control number', 'id' => 'bountyCommission', 'maxlength' => '3']) }}
{{ Form::label('bountyPercentage', trans('tournament.Bounty Percentage %'), ['class' => 'required'])}} {{ Form::text('bountyPercentage', '', ['class' => 'form-control number', 'id' => 'bountyPercentage', 'maxlength' => '3']) }}
{{ Form::label('startDate', trans('tournament.Start Date'), ['class' => 'required']) }} {{ Form::text('startDate', '', ['class' => 'form-control', 'id' => 'startDate', 'readonly' => 'readonly']) }}
{{ Form::label('endDate', trans('tournament.End Date'), ['class' => 'required']) }} {{ Form::text('endDate', '', ['class' => 'form-control', 'id' => 'endDate', 'readonly' => 'readonly']) }}

{{ trans('tournament.Blind Structure') }}

{{ Form::label('blindStructure', trans('tournament.Blind Structure'), ['class' => 'required'])}} {{ Form::select('blindStructure', $blindStructure, '', ['class' => 'form-control select2', 'id' => 'blindStructure', 'placeholder' => 'Select']) }}
{{ Form::label('startingBlind', trans('tournament.Starting Blind'), ['class' => 'required'])}} {{ Form::select('startingBlind', [], '', ['class' => 'form-control select2', 'id' => 'startingBlind', 'placeholder' => 'Select']) }}
{{ Form::label('timerTournamentEndLevel', trans('tournament.Timer Tournament End Level'), ['class' => 'required']) }} {{ Form::text('timerTournamentEndLevel', '', ['class' => 'form-control number', 'id' => 'timerTournamentEndLevel', 'maxlength' => '8']) }}
{{ Form::label('bindsIncrementTime', trans('tournament.Binds Increment Time'), ['class' => 'required'])}} {{ Form::text('bindsIncrementTime', '', ['class' => 'form-control number', 'id' => 'bindsIncrementTime', 'maxlength' => '2']) }}
{{ Form::label('startingChipsCount', trans('tournament.Starting Chips Count'), ['class' => 'required'])}} {{ Form::text('startingChipsCount', '', ['class' => 'form-control number', 'id' => 'startingChipsCount', 'maxlength' => '8']) }}

{{ trans('tournament.Time Settings') }}

{{ Form::label('turnTime', trans('tournament.Turn Time (sec)'), ['class' => 'required'])}} {{ Form::text('turnTime', '', ['class' => 'form-control number', 'id' => 'turnTime', 'maxlength' => '2']) }}
{{ Form::label('disconnectTime', trans('tournament.Disconnect Time (sec)'), ['class' => 'required'])}} {{ Form::text('disconnectTime', '', ['class' => 'form-control number', 'id' => 'disconnectTime', 'maxlength' => '2']) }}
{{ Form::label('extraTime', trans('tournament.Extra Time (sec)'), ['class' => 'required'])}} {{ Form::text('extraTime', '', ['class' => 'form-control number', 'id' => 'extraTime', 'maxlength' => '2']) }}
{{ Form::label('extraTimeMaxCap', trans('tournament.Extra Time (Max Cap) (sec)'))}} {{ Form::text('extraTimeMaxCap', '', ['class' => 'form-control number', 'id' => 'extraTimeMaxCap', 'maxlength' => '2']) }}
{{ Form::label('extraTimeBlindLevels', trans('tournament.Extra Time (Blind Levels) (sec)'))}} {{ Form::text('extraTimeBlindLevels', '', ['class' => 'form-control number', 'id' => 'extraTimeBlindLevels', 'maxlength' => '2']) }}
{{ Form::label('extraTimeAddOn', trans('tournament.Extra Time (Add-on) (sec)'))}} {{ Form::text('extraTimeAddOn', '', ['class' => 'form-control number', 'id' => 'extraTimeAddOn', 'maxlength' => '2']) }}

{{ trans('tournament.Additional Features') }}

{{ trans('tournament.Re-Buy Settings') }}

{{ Form::label('chipsToBeGranted', trans('tournament.Chips To Be Granted'), ['class' => 'required'])}} {{ Form::text('chipsToBeGranted', '', ['class' => 'form-control number', 'id' => 'chipsToBeGranted', 'maxlength' => '10']) }}
{{ Form::label('eligibleChips', trans('tournament.Player Max. Eligible Chips'), ['class' => 'required'])}} {{ Form::text('eligibleChips', '', ['class' => 'form-control number', 'id' => 'eligibleChips', 'maxlength' => '10']) }}
{{ Form::label('timePeriod', trans('tournament.Time Period'), ['class' => 'required'])}} {{ Form::select('timePeriod', $timePeriod, '', ['class' => 'form-control select2', 'id' => 'timePeriod', 'placeholder' => 'Select']) }}
{{ Form::label('noOfReBuy', trans('tournament.Num. Of Re-Buy'), ['class' => 'required'])}} {{ Form::select('noOfReBuy', $noOfReBuy, '', ['class' => 'form-control select2', 'id' => 'noOfReBuy', 'placeholder' => 'Select']) }}
{{ Form::label('reBuyAmount', trans('tournament.Re-Buy Amount'), ['class' => 'required'])}} {{ Form::text('reBuyAmount', '', ['class' => 'form-control number', 'id' => 'reBuyAmount', 'maxlength' => '5']) }}
{{ Form::label('entryFee', trans('tournament.Entry Fee'), ['class' => 'required'])}} {{ Form::text('entryFee', '', ['class' => 'form-control number', 'id' => 'entryFee', 'maxlength' => '5']) }}

{{ trans('tournament.Addon Settings') }}

{{ Form::label('addonChipsToBeGranted', trans('tournament.Chips To Be Granted'), ['class' => 'required'])}} {{ Form::text('addonChipsToBeGranted', '', ['class' => 'form-control number', 'id' => 'addonChipsToBeGranted', 'maxlength' => '5']) }}
{{ Form::label('addonTimeInterval', trans('tournament.Addon Time Interval (Minutes)'), ['class' => 'required'])}} {{ Form::text('addonTimeInterval', '', ['class' => 'form-control number', 'id' => 'addonTimeInterval', 'maxlength' => '2']) }}
{{ Form::label('addonAmount', trans('tournament.Addon Amount'), ['class' => 'required'])}} {{ Form::text('addonAmount', '', ['class' => 'form-control number', 'id' => 'addonAmount', 'maxlength' => '5']) }}
{{ Form::label('addonEntryFee', trans('tournament.Entry Fee'), ['class' => 'required'])}} {{ Form::text('addonEntryFee', '', ['class' => 'form-control number', 'id' => 'addonEntryFee', 'maxlength' => '5']) }}

{{ trans('tournament.Prize Structure') }}

{{ Form::label('prizeType', trans('tournament.Prize Type'), ['class' => 'required'])}}

{{ Form::label('prizeStructure', trans('tournament.Prize Structure'), ['class' => 'required'])}} {{ Form::select('prizeStructure', $prizeStructure, '', ['class' => 'form-control select2', 'id' => 'prizeStructure', 'placeholder' => 'Select']) }}
{{ Form::label('prizeMoneyType', trans('tournament.Prize Money Type'), ['class' => 'required'])}} {{ Form::select('prizeMoneyType', $prizeMoneyType, '', ['class' => 'form-control select2', 'id' => 'prizeMoneyType', 'placeholder' => 'Select']) }}
{{ Form::label('prizeBalanceType', trans('tournament.Prize Balance Type'), ['class' => 'required'])}}

{{ Form::label('prizePoolType', trans('tournament.Prize Pool Type'), ['class' => 'required'])}}

{{ Form::label('tournamentTicket', trans('tournament.Ticket'), ['class' => 'required'])}} {{ Form::text('tournamentTicket', '', ['class' => 'form-control number', 'id' => 'tournamentTicket', 'maxlength' => '6']) }}
{{ Form::label('prizePool', trans('tournament.Prize Pool [Guarantee Prize]'), ['class' => 'required'])}} {{ Form::text('prizePool', '', ['class' => 'form-control number', 'id' => 'prizePool', 'maxlength' => '8']) }}
{{ Form::label('noOfPlacesPaid', trans('tournament.No Of Places Paid'), ['class' => 'required'])}} {{ Form::text('noOfPlacesPaid', '', ['class' => 'form-control number', 'id' => 'noOfPlacesPaid', 'maxlength' => '4']) }}
@endsection @section('javascript') @stop