+ ...
+
+
+ ```
+
+### NPM
+1. Install node dependencies
+ ```
+ npm install
+ ```
+
+2. Install file manager frontend package
+ ```
+ npm install laravel-file-manager --save
+ ```
+
+3. Change the content of `resources/js/app.js` to
+ ```
+ import Vue from 'vue';
+ import Vuex from 'vuex';
+ import FileManager from 'laravel-file-manager'
+
+ Vue.use(Vuex);
+
+ const store = new Vuex.Store();
+
+ Vue.use(FileManager, {
+ store
+ });
+
+ window.fm = new Vue({
+ el: '#fm',
+ store,
+ template: ''
+ });
+ ```
+
+4. Edit the content of `resources/views/welcome.blade.php` replacing
+ ```
+
+ ```
+ And
+ ```
+
+ ```
+ With
+ ```
+
+ ```
+
+5. Compile frontend package
+ ```
+ npm run dev
+ ```
+
+6. Work on frontend package at `node_modules/laravel-file-manager` doing the modifications needed. Would be better to track changes using git
+
+7. Compile again by `npm run production` then copy final `public/js/app.js` to your laravel app `public/js/file-manager.js` you don't need any css files as it is already included in the js file
diff --git a/src/components/blocks/InfoBlock.vue b/src/components/blocks/InfoBlock.vue
index a16d744..36551d4 100644
--- a/src/components/blocks/InfoBlock.vue
+++ b/src/components/blocks/InfoBlock.vue
@@ -3,12 +3,12 @@