@php($title = __('games.title_edit_mod')) @extends('layouts.main') @section('breadclumbs') @endsection @section('content') @include('components.form.errors_block') {!! Form::model($gameMod, ['method' => 'PATCH','route' => ['admin.game_mods.update', $gameMod->id]]) !!}
{{ __('games.basic_info') }}
{{ Form::bsText('name') }}
{{ __('games.run_commands') }}
{{ Form::bsText('default_start_cmd_linux') }}
{{ Form::bsText('default_start_cmd_windows') }}
{{ __('games.repositories') }}
{{ Form::bsText('remote_repository') }} {{ Form::bsText('local_repository') }}
{{ __('games.servers_commands') }}
{{ Form::bsInput('text', [ 'name' => 'kick_cmd', 'description' => __('games.d_kick_cmd') ]) }} {{ Form::bsInput('text', [ 'name' => 'ban_cmd', 'description' => __('games.d_ban_cmd') ]) }} {{ Form::bsInput('text', [ 'name' => 'chname_cmd', 'description' => __('games.d_chname_cmd') ]) }} {{ Form::bsText('srestart_cmd') }} {{ Form::bsInput('text', [ 'name' => 'chmap_cmd', 'description' => __('games.d_chmap_cmd') ]) }} {{ Form::bsInput('text', [ 'name' => 'sendmsg_cmd', 'description' => __('games.d_sendmsg_cmd') ]) }} {{ Form::bsInput('text', [ 'name' => 'passwd_cmd', 'description' => __('games.d_passwd_cmd') ]) }}
{{ Form::submit(__('main.save'), ['class' => 'btn btn-success']) }}
{!! Form::close() !!} @endsection