@if ($recipe) {!! Form::open(['url' => 'admin/data/recipes/delete/' . $recipe->id]) !!}

You are about to delete the recipe {{ $recipe->name }}. This is not reversible. If this recipe exists in at least one user's possession, you will not be able to delete this recipe.

Are you sure you want to delete {{ $recipe->name }}?

{!! Form::submit('Delete Recipe', ['class' => 'btn btn-danger']) !!}
{!! Form::close() !!} @else Invalid recipe selected. @endif