@extends('layouts.member-app') @section('page-title')

{{ __($pageTitle) }}

@endsection @push('head-script') @endpush @section('content')
@lang('modules.tasks.updateTask')
{!! Form::open(['id'=>'updateTask','class'=>'ajax-form','method'=>'PUT']) !!} @if(!$user->cans('add_tasks')) @endif
@if(in_array('projects', $modules))
@endif
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_tasks'))
dependent_task_id != '') checked @endif>
dependent_task_id == null) style="display: none" @endif>
@endif
due_date == null) checked @endif name="without_duedate" value="true" type="checkbox">
@if($user->cans('add_tasks'))
@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') {!! Form::select('custom_fields_data['.$field->name.'_'.$field->id.']', $field->values, isset($task)?$task->custom_fields_data['field_'.$field->id]:'',['class' => 'form-control gender']) !!} @elseif($field->type == 'checkbox')
@foreach($field->values as $key => $value) @endforeach
@elseif($field->type == 'date') @endif
@endforeach @endif
priority == 'high') checked @endif value="high">
priority == 'medium') checked @endif id="radio14" value="medium">
priority == 'low') checked @endif value="low">
@if($upload)
{{ csrf_field() }}
@else
@lang('messages.storageLimitExceedContactAdmin')
@endif
    @forelse($task->files as $file)
  • {{ $file->filename }}
    @if(is_null($file->external_link))    @endif    {{ $file->created_at->diffForHumans() }}
  • @empty
  • @lang('messages.noFileUploaded')
  • @endforelse
{!! Form::close() !!}
@endsection @push('footer-script') @endpush