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

{{ trans('breadcrumbs.Responsible Gaming') }}

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

{{ Form::label('USERNAME', trans('responsibleGaming.Username')) }} {{ Form::text('USERNAME', '', ['id' => 'USERNAME', 'class' => 'form-control', 'placeholder' => trans('responsibleGaming.Username')]) }}
{{ Form::label('TYPE', trans('responsibleGaming.Type')) }} {{ Form::select('TYPE', $type, '', ['class' => 'form-control select2','placeholder' => trans('reports.Select option'), 'id' => 'TYPE']) }}
{{ Form::label('STATUS', trans('responsibleGaming.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