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