File: D:/HostingSpaces/centrum8a/centrum8a.com/resources/views/kms/attributes/dynamicFileBlock.blade.php
@include('kms.attributes.dynamicBlockStatus', ['translations' => $translations])
<div>
<label>{{$translations['title']}}</label>
<input type="text" ng-model="block.title"/>
<label>{{$translations['textDownloadLink']}}</label>
<input type="text" ng-model="block.download_text" />
<label>{{$translations['description']}}</label>
<input type="text" ng-model="block.short_description" size="160"/>
<label>{{$translations['file']}}</label>
<input type="file" name="upload-file-@{{block_key}}">
<div ng-click="deleteFile(block_key)" ng-show="block.file">
<span ng-show="block.file.split('.').pop() == 'pdf'" class="pdf-icon"></span>
<span ng-show="block.file.split('.').pop() != 'pdf'" class="file-icon"></span>
@{{ block.file.split('/').pop() }}
</div>
<label>{{$translations['image']}}</label>
<div class="max-images" data-max-images="1" ng-init="value.max_images=1">
@include('kms::attributes.dynamicimages')
</div>
</div>