{{$project_task->subject}} ({{$project_task->task_id}})

{{$project_task->project->name}} @if(isset($project_task->due_date)) {{@format_date($project_task->due_date)}} @endif {{__('project::lang.'.$project_task->priority)}} {{__('project::lang.'.$project_task->status)}} @includeIf('project::avatar.create', ['max_count' => '10', 'members' => $project_task->members])
  {{ __('lang_v1.description')}}
@includeIf('project::task.partials.edit_description')

@if(isset($project_task->project->settings['enable_timelog']) && $project_task->project->settings['enable_timelog']) @includeIf('project::task.partials.time_log') @endif {!! Form::open(['url' => action('\Modules\Project\Http\Controllers\TaskCommentController@store'), 'id' => 'add_comment_form', 'method' => 'post']) !!}
{{__('project::lang.add_comment')}}
{!! Form::label('comment', __('project::lang.comment') . ':*') !!} {!! Form::textarea('comment', null, ['class' => 'form-control ', 'rows' => '3', 'required']); !!}
{!! Form::close() !!}
{{__('project::lang.activity')}}
@includeIf('project::task.partials.comment', ['comments' => $project_task->comments])
@lang('project::lang.added_this_task_on', [ 'name' => $project_task->createdBy->user_full_name ]) {{@format_date($project_task->created_at)}}