@php
$title = __('Nuovo modello climabox');
@endphp
@extends('layouts.app')
@section('title')
{{ $title }}
@endsection
@section('breadcrumbs')
{{ __('Modello Climabox') }}
{{ $title }}
@endsection
@section('content')
{{ html()->form('POST', route('climaboxModels.store'))->class('form-horizontal')->open() }}
{{ $title }}
@include ("climaboxModels.partials.form")
{{ html()->form()->close() }}
@endsection