@extends('layouts.' . ($ajax ? 'ajax' : 'app'), [ 'title' => trans('tags.children.create.title', ['name' => $model->name]), 'description' => '', 'breadcrumbs' => [ ['url' => route('tags.index'), 'label' => trans('tags.index.title')], ['url' => route('tags.show', $model->id), 'label' => $model->name] ] ]) @section('content')
@if ($ajax)

{{ trans('tags.children.create.title', ['name' => $model->name]) }}

@endif
@include('partials.errors') {!! Form::open(['route' => $formOptions, 'method' => 'POST']) !!} @include('tags.entities._form') {!! Form::hidden('tag_id', $model->entity->id) !!} {!! Form::close() !!}
@endsection