@php
$title = __('Modifica') . ' ' . $label->label;
@endphp
@extends('layouts.app')
@section('title')
{{ $title }}
@endsection
@section('breadcrumbs')
{{ __('Etichette') }}
{{ $title }}
@endsection
@section('content')
{{ html()->modelForm($label, 'PATCH', route('labels.update', $label))->class('form-horizontal')->open() }}
{{ $title }}
@include ("labels.partials.form")
{{ html()->closeModelForm() }}
@endsection