@extends('templates.backend')
@section('page-title', isset($page_title) ? $page_title : 'Edit MarkerField')
@section('breadcrumbs')
{!! App\Helpers\Breadcrumbs::generate([
'MarkerFields' => ['backend.marker_fields.index'],
$marker_field->name => ['backend.marker_fields.show', $marker_field->id],
'Edit' => null,
]); !!}
@stop
@section('content')
{!! Form::model($marker_field, ['route' => ['backend.marker_fields.edit.post', $marker_field->id]]) !!}
@include('backend.marker_fields._partials.form')
{!! Form::submit('Update MarkerField', ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!}
@stop