@php $title = __('Modifica') . ' ' . $product->name @endphp @extends('layouts.app') @section('title') {{ $title }} @endsection @section('breadcrumbs') {{ __('Prodotti') }} {{ $title }} @endsection @section('content')
@can('downloadLabels', $product) {{__('labels.products.downloadLabels')}} @endif
{{ html()->modelForm($product, 'PATCH', route('products.update', [$product, $tenant->id]))->id('product-form')->class('form-horizontal')->acceptsFiles()->open() }} {{ $title }} @if($tenant->id == App\Enums\ProductVersions::Draft->value)
@if($draft_preview_url) {{ __('Visualizza') }} @endif @endif
@include ("products.partials.form")
{{ html()->closeModelForm() }}
@endsection