@extends('admin.layout') @section('subtitle') Delete Weapon {{ $weapon -> name }} @stop @section('content')

{{ $weapon -> name }} Delete

{{ Form::open( array('url' => action('WeaponController@destroy', array('id' => $game -> id, 'weaponID' => $weapon -> id)), 'class' => 'form-horizontal')) }}

Are you sure you want to delete Weapon {{ $weapon -> name }}? This process is irreversible.

Cancel
{{ Form::close() }}
@stop