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