@extends('layouts.admin') @section('page-title') {{ __('Create Ticket') }} @endsection @section('content')
@csrf
{{ __('Ticket Information') }}
{{ $errors->first('name') }}
{{ $errors->first('email') }}
{{ $errors->first('category') }}
{{ $errors->first('status') }}
{{ $errors->first('subject') }}
{{ $errors->first('description') }}
@if(!$customFields->isEmpty()) @include('admin.customFields.formBuilder') @endif
{{ __('Attachments') }}({{__('You can select multiple files')}})

@endsection @push('scripts') @endpush