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

{{ $attachment -> name }} Delete

{{ Form::open( array('url' => action('AttachmentController@destroy', array('id' => $game -> id, 'attachmentID' => $attachment -> id)), 'class' => 'form-horizontal')) }}

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

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