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

{{ trans('breadcrumbs.Edit Game') }}

{{ trans('game.Game Configuration') }}

@csrf {{ Form::hidden('id', $hidden) }}
{{ Form::label('tableName', trans('game.Table name'), ['class' => 'required']) }} {{ Form::text('tableName', $tableName, ['id' => 'tableName', 'class' => 'form-control', 'placeholder' => trans('game.Table name'), 'readonly' => 'readonly']) }}
{{ Form::label('gameType', trans('game.Game type'), ['class' => 'required'])}} {{ Form::select('gameType', $gameType, $gameTypeValue, ['class' => 'form-control select2', 'id' => 'gameType', 'placeholder' => 'Select']) }}
{{ Form::label('currencyType', trans('game.Currency type'), ['class' => 'required'])}} {{ Form::select('currencyType', $currencyType, $currencyTypeValue, ['class' => 'form-control select2', 'id' => 'currencyType', 'placeholder' => 'Select']) }}
{{ Form::label('minimumPlayers', trans('game.Minimum Players'), ['class' => 'required'])}} {{ Form::select('minimumPlayers', $minimumPlayers, $minimumPlayersValue, ['class' => 'form-control select2', 'id' => 'minimumPlayers', 'placeholder' => 'Select']) }}
{{ Form::label('maximumPlayers', trans('game.Maximum Players'), ['class' => 'required'])}} {{ Form::select('maximumPlayers', $maximumPlayers, $maximumPlayersValue, ['class' => 'form-control select2', 'id' => 'maximumPlayers', 'placeholder' => 'Select']) }}
{{ Form::label('status', trans('game.Status'), ['class' => 'required'])}} {{ Form::select('status', $status, $statusValue, ['class' => 'form-control select2', 'id' => 'status', 'placeholder' => 'Select']) }}
{{ Form::label('smallBlind', trans('game.Small Blind'), ['class' => 'required']) }} {{ Form::text('smallBlind', $smallBlind, ['id' => 'smallBlind', 'class' => 'form-control number', 'maxlength' => '5']) }}
{{ Form::label('bigBlind', trans('game.Big Blind'), ['class' => 'required']) }} {{ Form::number('bigBlind', $bigBlind, ['id' => 'bigBlind', 'class' => 'form-control number', 'readonly' => 'readonly']) }}
{{ Form::label('minimumBuyIn', trans('game.Minimum (Buy-in)'), ['class' => 'required']) }} {{ Form::text('minimumBuyIn', $minimumBuyIn, ['id' => 'minimumBuyIn', 'class' => 'form-control number', 'maxlength' => '3']) }}
{{ Form::label('maximumBuyIn', trans('game.Maximum (Buy-in)'), ['class' => 'required']) }} {{ Form::text('maximumBuyIn', $maximumBuyIn, ['id' => 'maximumBuyIn', 'class' => 'form-control number', 'maxlength' => '5']) }}
{{ Form::label('limit', trans('game.Limit'), ['class' => 'required'])}} {{ Form::select('limit', $limit, $limitValue, ['class' => 'form-control select2', 'id' => 'limit', 'placeholder' => 'Select']) }}
{{ Form::label('rake', trans('game.Rake (%)'), ['class' => 'required']) }} {{ Form::text('rake', $rake, ['id' => 'rake', 'class' => 'form-control number', 'maxlength' => '3']) }}
{{ Form::label('rakeHeadsUp', trans('game.Rake (Heads up%)'), ['class' => 'required']) }} {{ Form::text('rakeHeadsUp', $rakeHeadsUp, ['id' => 'rakeHeadsUp', 'class' => 'form-control number', 'maxlength' => '3']) }}
{{ Form::label('rakeCap', trans('game.Rake Cap(<=3)'), ['class' => 'required']) }} {{ Form::text('rakeCap', $rakeCap, ['id' => 'rakeCap', 'class' => 'form-control number', 'maxlength' => '5']) }}
{{ Form::label('rakeCap1', trans('game.Rake Cap(>3)'), ['class' => 'required']) }} {{ Form::text('rakeCap1', $rakeCap1, ['id' => 'rakeCap1', 'class' => 'form-control number', 'maxlength' => '5']) }}
{{ Form::label('rakeCap2', trans('game.Rake Cap(>6)'), ['class' => 'required']) }} {{ Form::text('rakeCap2', $rakeCap2, ['id' => 'rakeCap2', 'class' => 'form-control number', 'maxlength' => '5']) }}
{{ Form::label('antibankingTime', trans('game.Antibanking Time'), ['class' => 'required'])}}
{{ Form::label('sitOutTime', trans('game.Sit Out Time'), ['class' => 'required'])}}
{{ Form::label('playerTime', trans('game.Player Time'), ['class' => 'required'])}}
{{ Form::label('extraTime', trans('game.Extra Time'), ['class' => 'required'])}}
{{ Form::label('disconnectingTime', trans('game.Disconnecting Time'), ['class' => 'required'])}}
{{ Form::label('password', trans('game.Password'), ['class' => 'required']) }} {{ Form::password('password', ['id' => 'password', 'class' => 'form-control password', 'maxlength' => '15']) }}
@endsection @section('javascript') @include('datatablejs') @stop