@extends('layout.main') @section('content') {!! Former::open()->route('admin.adkats.special_players.update', [$special_player->specialplayer_id]) !!}
Selecting multiple groups, creates multiple special player instances for the player! These new instances will copy the selected expiration.
{!! Former::text('player_name')->label('Player Name')->value($special_player->player_identifier)->disabled(true) !!}
 
{!! Form::hidden('EndDateTime', old("EndDateTime", $special_player->player_expiration)) !!} Start time has no effect. The player group becomes effective right away.
{!! Former::select('groups[]')->label('Groups') ->options($groups) ->select($special_player->player_group) ->multiple()->size(count($groups, COUNT_RECURSIVE)) ->help('Hold CTRL to select multiple groups.') !!}
{!! link_to_route('admin.adkats.special_players.index', trans('site.admin.special_players.edit.buttons.cancel'), [], ['class' => 'btn bg-blue', 'target' => '_self']) !!}
{!! Former::close() !!} @stop @section('scripts') {!! Html::script('js/plugins/daterangepicker/daterangepicker.js') !!}