@extends('appshell::layouts.private') @section('title') {{ __('Editing') }} {{ $taxon->name }} @stop @section('content')
{!! Form::model($taxon, ['url' => route('vanilo.admin.taxon.update', [$taxonomy, $taxon]), 'method' => 'PUT']) !!}
{{ __(':category Data', ['category' => \Illuminate\Support\Str::singular($taxonomy->name)]) }}
@include('vanilo::taxon._form')
{!! Form::close() !!}
@include('vanilo::media._edit', ['model' => $taxon])
@stop