@extends('admin.layouts.app') @section('title', ' {{ __(\'Nuovo Ticket\') }} ') @section('content')

Crea Nuovo Ticket

Torna alla Lista
@csrf @include('admin.tickets._form', ['ticket' => null])
{{ __('Annulla') }} {{ __('Crea Ticket') }}
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@endsection