@extends('dashboard::layouts.admin') @section('content')
{!! Breadcrumbs::render('edit.hackathon', $hackathon) !!} @include('hackathon::backend.partials.title')
{!! Form::model($hackathon, [ 'class' => 'form', 'method' => 'POST', 'route' => ['admin.update-hackathon', $hackathon->id], 'files' => true, ]) !!} @include('hackathon::backend.partials.form', ['selectedCategoryIds' => $selectedCategoryIds]) @include('file::partials.file-upload')
{!! Form::submit('Update', ['class' => 'edit-button']) !!} Cancel
{!! Form::close() !!}
@include('file::partials.file-edit-delete', ['entity' => $hackathon, 'model' => 'hackathon']) @endsection