@php($title = __('games.title_add_mod')) @extends('layouts.main') @section('breadclumbs') @endsection @section('content') @include('components.form.errors_block') {!! Form::open(['url' => route('admin.game_mods.index')]) !!}
{{ Form::label('game_code', __('games.game'), ['class' => 'control-label']) }} {{ Form::select('game_code', $gameList, $game, ['class' => 'form-control']) }}
{{ Form::bsText('name') }} {{ Form::bsText('remote_repository') }} {{ Form::bsText('local_repository') }}
{{ Form::submit(__('main.create'), ['class' => 'btn btn-success']) }}
{!! Form::close() !!} @endsection