@extends('layouts.default') {{-- Page title --}} @section('title') @if ($item->id) {{ $updateText }} @else {{ $createText }} @endif @parent @stop @section('header_right') {{ trans('general.back') }} @stop {{-- Page content --}} @section('content')
@if ((isset($topSubmit) && ($topSubmit=='true')) || (isset($item->id)))
@if ($item->id)

{{ $item->display_name }}

@endif
@if (isset($topSubmit) && ($topSubmit=='true'))
@endif
@endif
@if ($item->id) {{ method_field('PUT') }} @endif {{ csrf_field() }} @yield('inputFields') @include('partials.forms.edit.submit')
@stop