@extends('_master')
@section('title')
Add Game
@stop
@section('content')
Add Game
{{ Form::open(array('url' => '/game/create')) }}
{{ Form::label('Title') }}
{{ Form::text('title') }}
{{ Form::label('Franchise') }}
{{ Form::text('franchise') }}
{{ Form::label('Genre') }}
{{ Form::text('genre') }}
{{ Form::label('Platform') }}
{{ Form::text('platform') }}
{{ Form::label('Status') }}
{{ Form::text('status') }}
{{ Form::label('Progress') }}
{{ Form::text('progress') }}
{{ Form::label('Currently Playing?') }}
{{ Form::text('currently_playing') }}
{{ Form::label('Rating') }}
{{ Form::text('rating') }}
{{ Form::label('Notes') }}
{{ Form::text('notes') }}
{{ Form::submit('Submit') }}
{{ Form::close() }}
@stop