@extends('layout.main') @section('content') {!! Former::open()->route('admin.site.servers.update', [$server->ServerID]) !!}
{!! Former::text('filter') ->label('Filter Server Name') ->help('Fill out this field to strip out unwanted characters in server name. This only affects how the server name is displayed on the site. Separate each entry by a comma.') !!} {!! Former::text('rcon_password') ->label('RCON Password') ->help('Enter RCON password for server. This is required for the Live Scoreboard to function. Leave field blank to not change it.') ->forceValue('') !!} {!! Former::text('battlelog_guid') ->label('Battlelog GUID') ->help('Battlelog GUID of your server. Required for certain information to be displayed.') !!} @if(Config::get('bfacp.uptimerobot.enabled'))
If checked this will setup this server on UptimeRobot.
@endif
 
{!! link_to_route('admin.site.servers.index', trans('site.admin.servers.edit.buttons.cancel'), [], ['class' => 'btn bg-blue', 'target' => '_self']) !!}
{!! Former::close() !!} @stop