@if(!empty($errors->all()))
{{ Html::ul($errors->all())}}
@endif
{{ Form::label('duration', 'Duration') }}
{{ Form::number('duration', $entity['duration'], ['class'=>'form-control', 'placeholder'=>'Duration Time in Minutes']) }}
{{ Form::label('image', 'Captured Image of Evidence (jpg,png). Left it blank if does not change') }}
{{ Form::file('image', ['class'=>'form-control']) }}
{{ Form::label('comment', 'Task Comment') }}
{{ Form::textarea('comment', $entity['comment'], ['class'=>'form-control', 'placeholder'=>'Task Comment', 'rows'=>5]) }}