@extends('backend.layouts.app') @section('page-title', trans('app.banks')) @section('page-heading', trans('app.banks')) @section('content')
@include('backend.partials.messages')

@lang('app.filter')

{!! Form::select('percent', ['' => '---'] + \VanguardLTE\Shop::$values['percent_labels'], Request::get('percent'), ['class' => 'form-control']) !!}
{!! Form::select('sort_order', ['' => '---', 'asc' => 'Low', 'desc' => 'High'], $savedSortOrder, ['class' => 'form-control']) !!}
{!! Form::select('sort_field', [ '' => '---', 'percent' => 'Percent', 'rtp' => 'RTP', 'slots' => 'Slots', 'little' => 'Little', 'table_bank' => 'Table', 'fish' => 'Fish', 'bonus' => 'Bonus', 'total' => 'Total', ], $savedSortFiled, ['class' => 'form-control']) !!}

@lang('app.banks')

@if( auth()->user()->hasRole('admin') )