@extends('admin.layout')
@section('subtitle')
Delete Game {{ $game -> id }}
@stop
@section('content')
{{ Form::open( array('url' => action('GameController@destroy', array('id' => $game -> id)), 'method' => 'DELETE', 'class' => 'form-horizontal')) }}
{{ Form::close() }}
@stop