@csrf @if($ticket->exists) @method('PUT') @endif
@if($errors->has('title'))

{{$errors->first('title')}}

@endif
@if($errors->has('association_id'))

{{$errors->first('association_id')}}

@endif
@if($errors->has('importance'))

{{$errors->first('importance')}}

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

{{$errors->first('body') ?? $ticket->body}}

@endif
@if($errors->has('attachment'))

{{$errors->first('attachment')}}

@endif