@php $title = __('Modifica') . ' ' . $product->name . ' - ' . $attachment->title; @endphp @extends('layouts.app') @section('title') {{ $title }} @endsection @section('breadcrumbs') {{ __('Prodotti') }} {{ $product->name }} @endsection @section('content')
{{ html()->modelForm($attachment, 'PATCH', route('products.tenants.attachments.update', [$product, $tenant, $attachment]))->class('form-horizontal')->acceptsFiles()->open() }} {{ $title }} @include ("products.attachments.partials.form") {{ html()->closeModelForm() }}
@endsection