@extends('Layouts.adminLayout') @section('title') {{__('Insert Ticket')}} @endsection @section('breadcrumb')
@endsection @section('content')
{{__('Insert Ticket')}}
@CSRF
@if ($errors->has('lang'))
{{ $errors->first('lang') }}
@endif
@if ($errors->has('department'))
{{ $errors->first('department') }}
@endif
@if ($errors->has('priority'))
{{ $errors->first('priority') }}
@endif
@if ($errors->has('subject'))
{{ $errors->first('subject') }}
@endif
@if ($errors->has('file'))
{{ $errors->first('file') }}
@endif
@if ($errors->has('text'))
{{ $errors->first('text') }}
@endif
@endsection