@extends ('core.layouts.app') @section ('title', trans('labels.backend.productcategories.management') . ' | ' . trans('labels.backend.productcategories.edit')) @section('page-header')

{{ trans('labels.backend.productcategories.management') }} {{ trans('labels.backend.productcategories.edit') }}

@endsection @section('content')

{{ trans('labels.backend.productcategories.edit') }}

@include('focus.productcategories.partials.productcategories-header-buttons')
{{ Form::model($productcategories, ['route' => ['biller.productcategories.update', $productcategories], 'class' => 'form-horizontal', 'role' => 'form', 'method' => 'PATCH', 'id' => 'edit-productcategory']) }}
{{-- Including Form blade file --}} @include("focus.productcategories.form")
{{ link_to_route('biller.productcategories.index', trans('buttons.general.cancel'), [], ['class' => 'btn btn-danger btn-md']) }} {{ Form::submit(trans('buttons.general.crud.update'), ['class' => 'btn btn-primary btn-md']) }}
{{ Form::close() }}
@endsection