@if ($wishlist) {!! Form::open(['url' => 'wishlists/delete/' . $wishlist->id]) !!}

This will delete the wishlist {{ $wishlist->name }} as well as any items in it. This is not reversible. Are you sure you want to delete this wishlist?

{!! Form::submit('Delete Wishlist', ['class' => 'btn btn-danger']) !!}
{!! Form::close() !!} @else

Invalid wishlist selected.

@endif