@php($title = __('games.title_edit')) @extends('layouts.main') @section('breadclumbs') @endsection @section('content') @include('components.form.errors_block')
 {{ __('games.add_mod') }}
{!! Form::model($game, ['method' => 'PATCH','route' => ['admin.games.update', $game->code]]) !!}
{{ Form::bsText('code', null, null, ['disabled']) }} {{ Form::bsText('start_code') }} {{ Form::bsText('name') }} {{ Form::bsText('engine') }} {{ Form::bsText('engine_version') }}
{{ Form::bsText('steam_app_id') }} {{ Form::bsText('steam_app_set_config') }}
{{ Form::bsText('local_repository') }} {{ Form::bsText('remote_repository') }}
{{ __('games.mods') }}
{{ Form::submit(__('main.save'), ['class' => 'btn btn-success']) }} {!! Form::close() !!} @endsection