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

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

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

@csrf
{{ Form::label('tournamentType', trans('tournament.Tournament Type'), ['class' => 'required'])}} {{ Form::select('tournamentType', $tournamentType, '', ['class' => 'form-control select2', 'id' => 'tournamentType', 'placeholder' => 'Select']) }}
{{ Form::label('tournamentName', trans('tournament.Tournament Name'), ['class' => 'required']) }} {{ Form::text('tournamentName', '', ['id' => 'tournamentName', 'class' => 'form-control', 'placeholder' => trans('tournament.Tournament Name')]) }}
{{ Form::label('status', trans('game.Status'), ['class' => 'required'])}} {{ Form::select('status', $status, '', ['class' => 'form-control select2', 'id' => 'status', 'placeholder' => 'Select']) }}
{{ Form::label('tournamentDescription', trans('tournament.Tournament Description'), ['class' => 'required']) }} {{ Form::textarea('tournamentDescription', '',['class'=>'form-control', 'id' => 'tournamentDescription', 'rows' => 2, 'cols' => 40]) }}

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

{{ Form::label('cashType', trans('tournament.Cash Type'), ['class' => 'required'])}}
{{ Form::label('balanceType', 'Balance Type (Buyin)', ['class' => 'required'])}}

{{ Form::label('amount', trans('tournament.Amount').' '.env('CURRENCY_SYMBOL'), ['class' => 'required']) }} {{ Form::select('amount', $amount, '', ['class' => 'form-control guaranteedPrize select2', 'id' => 'amount', 'placeholder' => 'Select']) }}
{{ Form::label('rake', trans('tournament.Rake %'), ['class' => 'required'])}} {{ Form::number('rake', '', ['class' => 'form-control guaranteedPrize', 'id' => 'rake', 'min' => '0', 'max' => '100','placeholder' => trans('tournament.Rake %')]) }}
{{ Form::label('Rebuyamount', trans('tournament.RebuyAmount')) }} {{ Form::text('Rebuyamount', '', ['id' => 'Rebuyamount', 'class' => 'form-control','placeholder' => trans('tournament.RebuyAmount'),'style' => 'background:#f3f3f5;']) }}
{{ Form::label('Rebuyrake', trans('tournament.Rebuyrake')) }} {{ Form::text('Rebuyrake', '', ['id' => 'Rebuyrake', 'class' => 'form-control','style' => 'background:#f3f3f5;','placeholder' => trans('tournament.Rebuyrake')]) }}
{{ Form::label('Rebuycount', trans('tournament.Rebuycount')) }} {{ Form::text('Rebuycount', 'Unlimited', ['id' => 'Rebuycount', 'class' => 'form-control','style' => 'background:#f3f3f5;']) }}

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

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

{{ trans('tournament.Level Config') }}

{{ Form::label('levelCount', trans('tournament.No of Levels'), ['class' => 'required']) }} {{ Form::select('levelCount', $noOfLevels, '2', ['class' => 'form-control select2', 'id' => 'levelCount', 'placeholder' => 'Select']) }}
{{ Form::label('maxPlayer', trans('tournament.Max Players'), ['class' => 'required']) }} {{ Form::select('maxPlayer', $maxPlayer, '', ['class' => 'form-control select2', 'id' => 'maxPlayer', 'placeholder' => 'Select']) }}
{{ Form::label('minPlayer', trans('tournament.Min Players'), ['class' => 'required']) }} {{ Form::select('minPlayer', ['' => 'Select'], '', ['class' => 'form-control guaranteedPrize select2', 'id' => 'minPlayer', 'placeholder' => 'Select']) }}
{{ Form::label('levelTime', trans('tournament.Level Time'), ['class' => 'required']) }} {{ Form::text('levelTime', $levelTime, ['id' => 'levelTime', 'class' => 'form-control', 'placeholder' => trans('tournament.Level Time')]) }}
{{ Form::label('breakTime', trans('tournament.Break Time'), ['class' => 'required']) }} {{ Form::select('breakTime', $breakTime, '', ['class' => 'form-control select2', 'id' => 'breakTime', 'placeholder' => 'Select']) }}

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

{{ trans('tournament.Level') }} {{ trans('tournament.Point Value') }} {{ trans('tournament.Min Chips') }} {{ trans('tournament.Initial Chips') }} {{ trans('tournament.Rebuy') }} {{ trans('tournament.Reload') }}
1
{{ Form::select('pointValue_1', $pointValue, '', ['class' => 'form-control select2', 'id' => 'pointValue_1', 'style' => 'width:100%']) }}
2
-
3
-
4
-
5
-

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

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

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

{{ Form::label('tournamentPrizeType', trans('tournament.Tournament Prize Type'), ['class' => 'required']) }}
{{ Form::label('guaranteedPrize', trans('tournament.Guaranteed Prize').' '.env('CURRENCY_SYMBOL'), ['class' => 'required'])}} {{ Form::text('guaranteedPrize', '', ['class' => 'form-control', 'id' => 'guaranteedPrize', 'min' => '0','maxlength' => '8','onkeypress'=>'return checkNumberKey(event)']) }}
{{ Form::label('noOfPrizes', trans('tournament.No. Of Prizes'), ['class' => 'required'])}} {{ Form::number('noOfPrizes', '', ['class' => 'form-control', 'id' => 'noOfPrizes']) }}
@endsection @section('javascript') @stop