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

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

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

{{ Form::label('TOURNAMENT_NAME', trans('tournament.Tournament Name')) }} {{ Form::text('TOURNAMENT_NAME','', ['id' => 'TOURNAMENT_NAME', 'class' => 'form-control', 'placeholder' => trans('tournament.Tournament Name')]) }}
{{ Form::label('GAME_TYPE', trans('tournament.Game Type'))}} {{ Form::select('GAME_TYPE', $gameType,'',['class' => 'form-control select2','placeholder' => trans('reports.Select option'),'id' => 'GAME_TYPE']) }}
{{ Form::label('CURRENCY_TYPE', trans('tournament.Currency Type'))}} {{ Form::select('CURRENCY_TYPE', $currencyType,'',['class' => 'form-control select2','placeholder' => trans('reports.Select option'),'id' => 'CURRENCY_TYPE']) }}
{{ Form::label('STAKE', trans('tournament.Stake')) }} {{ Form::text('STAKE','', ['id' => 'STAKE', 'class' => 'form-control', 'placeholder' => trans('tournament.Stake')]) }}
{{ Form::label('STATUS', trans('tournament.Status'))}} {{ Form::select('STATUS', $status,'',['class' => 'form-control select2','placeholder' => trans('reports.Select option'),'id' => 'STATUS']) }}
{{ Form::label('DATE_RANGE',trans('layout.Select Date Range')) }}


@endsection @section('javascript') @include('datatablejs') @stop