@extends('layouts.newApp') @section('page-title')

@lang($pageTitle)

@endsection @push('head-script') @endpush @section('content')
@lang('modules.tasks.updateTask')
@csrf @method('PUT')
{{ csrf_field() }}
    @forelse($task->files as $file)
  • {{ $file->filename }}
    @if(is_null($file->external_link)) @endif {{ $file->created_at->diffForHumans() }}
  • @empty
  • @lang('messages.noFileUploaded')
  • @endforelse
{{-- billable) checked @endif name="billable" value="true" type="checkbox"> --}} billable==\App\Task::BILLABLE_TASK ? 'checked' : ''}}> billable==\App\Task::NON_BILLABLE_TASK ? 'checked' : ''}}> {{-- billable==\App\Task::MAINTENANCE_TASK ? 'checked' : ''}}> --}}
billable) checked @endif name="billable" value="true" type="checkbox">
estimate_hours > 0 || $task->estimate_minutes > 0 ? 'checked' : ''}} name="set_time_estimate" value="true" type="checkbox" onclick="return false;">
estimate_hours == 0 && $task->estimate_minutes == 0) style="display: none" @endif class="estimateTimeBox">
@lang('app.hrs')
@lang('app.mins')
dependent_task_id != '') checked @endif>
dependent_task_id == null) style="display: none" @endif>
@if(count($fields) > 0)

@lang('modules.projects.otherInfo')

@foreach($fields as $field)
@if( $field->type == 'text') @elseif($field->type == 'password') @elseif($field->type == 'number') @elseif($field->type == 'textarea') @elseif($field->type == 'radio')
@foreach($field->values as $key=>$value) @endforeach
@elseif($field->type == 'select') @elseif($field->type == 'checkbox')
@foreach($field->values as $key => $value) @endforeach
@elseif($field->type == 'date') @endif
@endforeach
@endif
{{--Ajax Modal--}} {{--Ajax Modal Ends--}} {{--Ajax Modal--}} {{--Ajax Modal Ends--}} @endsection @push('footer-script') @endpush