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