@extends('dashboard::layouts.admin') @section('content')
{!! Form::open([ 'method' => 'post', 'route' => ['admin.delete-badge', $badge->id], ]) !!}
Attention!
Do you really want to delete this badge - {{ $badge->title }} ? :P
{!! Form::submit('DELETE') !!} CANCEL
{!! Form::close() !!}
@endsection