@extends('layouts.main') @section('content')
@csrf
{{__('Open a new ticket')}}
@if ($errors->has('title')) {{ $errors->first('title') }} @endif
@if ($servers->count() >= 1)
@if ($errors->has('category')) {{ $errors->first('ticketcategory') }} @endif
@endif
@if ($errors->has('category')) {{ $errors->first('ticketcategory') }} @endif
@if ($errors->has('priority')) {{ $errors->first('priority') }} @endif
{{__('Ticket details')}}
@if ($errors->has('message')) {{ $errors->first('message') }} @endif
@endsection