@extends('admin.layout') @section('subtitle') Create Game @stop @section('content')

Game Create New

{{ Form::open( array('action' => 'GameController@store', 'class' => 'form-horizontal', 'files' => true)) }}

Create Game

{{ Form::text('id', '', array('class' => 'form-control input-lg', 'placeholder' => 'Game Name', 'required' => '')) }}
{{ Form::text('short_name', '', array('class' => 'form-control input-lg', 'placeholder' => 'Short Name')) }}
{{ Form::select('theme_color', array('cyan' => 'Cyan', 'green' => 'Green', 'orange' => 'Orange', 'red' => 'Red', 'yellow' => 'Yellow'), null, array('class' => 'form-control input-lg', 'placeholder' => 'Theme Color', 'required' => '')) }}
{{ Form::text('live', '0', array('class' => 'form-control input-lg', 'placeholder' => 'Live', 'required' => '')) }}
{{ Form::label('image', 'Upload Small Image (525 x 179 minimum): ', array('class' => 'control-label'))}} {{ Form::file('image', '', array('class' => 'form-control input-lg')) }}
{{ Form::label('header_image', 'Upload Header Image (1500 x 215 minimum): ', array('class' => 'control-label'))}} {{ Form::file('header_image', '', array('class' => 'form-control input-lg')) }}
{{ Form::close() }}
@stop