@extends('layouts.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']) !!}
dependent_task_id != '') checked @endif>
dependent_task_id == null) style="display: none" @endif>
priority == 'high') checked @endif value="high">
priority == 'medium') checked @endif id="radio14" value="medium">
priority == 'low') checked @endif value="low">
{{ csrf_field() }}
    @forelse($task->files as $file)
  • {{ $file->filename }}
    @if($file->external_link != '') @elseif(config('filesystems.default') == 'local') @elseif(config('filesystems.default') == 's3') @elseif(config('filesystems.default') == 'google') @elseif(config('filesystems.default') == 'dropbox') @endif @if(is_null($file->external_link))    @endif    {{ $file->created_at->diffForHumans() }}
  • @empty
  • @lang('messages.noFileUploaded')
  • @endforelse
{!! Form::close() !!}
{{--Ajax Modal--}} {{--Ajax Modal Ends--}} @endsection @push('footer-script') @endpush