@lang('modules.tasks.taskDetail')
@if((!is_null($task->project) && $task->project->isProjectAdmin) || $user->cans('edit_projects') || ($task->created_by == $user->id) )
{!! Form::open(['id'=>'updateTask','class'=>'ajax-form','method'=>'PUT']) !!} {!! Form::hidden('project_id', $task->project_id) !!}
due_date == null) checked @endif name="without_duedate" value="true" type="checkbox">
is_private) checked @endif type="checkbox">
billable) checked @endif type="checkbox">
estimate_hours > 0 || $task->estimate_minutes > 0) checked @endif name="set_time_estimate" value="true" type="checkbox">
estimate_hours == 0 && $task->estimate_minutes == 0) style="display: none" @endif>
@lang('app.hrs')    @lang('app.mins')
@if ($user->cans('view_projects'))
@endif
priority == 'high') checked @endif value="high">
priority == 'medium') checked @endif id="radio14" value="medium">
priority == 'low') checked @endif value="low">
{!! Form::close() !!}
@else

{{ ucfirst($task->heading) }}

{!! ucfirst($task->description) !!}

@if($task->due_date) {{ $task->due_date->format('d-M-Y') }} @endif

@foreach ($task->users as $item) @endforeach

@endif