@extends('backend.layouts.app') @section('page-title', trans('app.add_game')) @section('page-heading', trans('app.add_game')) @section('breadcrumbs') @stop @section('content') @include('backend.partials.messages') {!! Form::open(['route' => 'backend.game.store', 'files' => true, 'id' => 'user-form']) !!}
@lang('app.game_details')

A general game information.

@include('backend.games.partials.base', ['edit' => false, 'profile' => false])
Category

A game category information.

@include('backend.games.partials.category', ['edit' => false, 'profile' => false])
@lang('app.game_match')

A game match information.

@include('backend.games.partials.match', ['edit' => false, 'profile' => false])
@lang('app.game_jackpot')

A game jackpot information.

@include('backend.games.partials.jackpot', ['edit' => false, 'profile' => false])
Reel Strip

A game Reel Strip information.

@include('backend.games.partials.reel_strip', ['edit' => false, 'profile' => false])
Reel Strip Bonus

A game Reel Strip Bonus information.

@include('backend.games.partials.reel_strip_bonus', ['edit' => false, 'profile' => false])
{!! Form::close() !!}
@stop @section('scripts') {!! HTML::script('assets/js/as/profile.js') !!} {!! JsValidator::formRequest('VanguardDK\Http\Requests\Game\CreateGameRequest', '#user-form') !!} @stop