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

{{ trans('breadcrumbs.Recurrence 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('TOURNAMENT_TYPE', trans('tournament.Tournament Type'))}} {{ Form::select('TOURNAMENT_TYPE', $tournamentType,'',['class' => 'form-control select2','placeholder' => trans('reports.Select option'),'id' => 'TOURNAMENT_TYPE']) }}
{{ 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