@extends('theme::layouts.app', ['alias' => 'Account']) @section('theme::title', __('seo.tickets.new')) @section('theme::sidebar') @include('theme::frontend.account.sidebar', ['account_alias'=>'Tickets']) @endsection @section('theme::content')

{{ __('home.tickets.new.title') }}

@csrf
@if ($errors->has('title')) {{ $errors->first('title') }} @endif
@if ($errors->has('category')) {{ $errors->first('category') }} @endif
@if ($errors->has('prioritys')) {{ $errors->first('prioritys') }} @endif

@if ($errors->has('body')) {{ $errors->first('body') }} @endif

@endsection