@extends('layouts.admin') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.comment.title_singular') }}
id]) }}" method="POST" enctype="multipart/form-data"> @csrf @method('PUT')
@if($errors->has('ticket_id')) {{ $errors->first('ticket_id') }} @endif
@if($errors->has('author_name')) {{ $errors->first('author_name') }} @endif

{{ trans('cruds.comment.fields.author_name_helper') }}

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

{{ trans('cruds.comment.fields.author_email_helper') }}

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

{{ trans('cruds.comment.fields.comment_text_helper') }}

@endsection