@extends('layouts.main') @section('page-title') {{ __('Create Ticket') }} @endsection @section('page-breadcrumb') {{ __('Tickets') }} @endsection @push('css') @endpush @section('content')
@csrf
@if(Auth::user()->type == 'super admin')
@php $name = 'Customers'; @endphp
{{ $errors->first('name') }}
{{ $errors->first('email') }}
@endif
{{ $errors->first('category') }}
{{ $errors->first('status') }}
{{ $errors->first('subject') }}

{{ $errors->first('description') }}
{{ __('Cancel') }}
@endsection @push('scripts') @endpush