- {{ Form::open(['route' => 'installer.complete', 'method' => 'GET']) }}
+ {{ Form::open(['route' => 'importer.complete', 'method' => 'GET']) }}
Installer Completed!
@@ -11,7 +11,7 @@
Click the button to proceed to the login screen!
- {{ Form::submit('Install Complete! Continue to Log-In >>',
+ {{ Form::submit('Import Complete! Continue to Log-In >>',
['class' => 'btn btn-success'])
}}
diff --git a/modules/Installer/Resources/views/flash/dbtest.blade.php b/modules/Importer/Resources/views/dbtest.blade.php
similarity index 100%
rename from modules/Installer/Resources/views/flash/dbtest.blade.php
rename to modules/Importer/Resources/views/dbtest.blade.php
diff --git a/modules/Installer/Resources/views/importer/error.blade.php b/modules/Importer/Resources/views/error.blade.php
similarity index 86%
rename from modules/Installer/Resources/views/importer/error.blade.php
rename to modules/Importer/Resources/views/error.blade.php
index 41610bde..938f29c9 100644
--- a/modules/Installer/Resources/views/importer/error.blade.php
+++ b/modules/Importer/Resources/views/error.blade.php
@@ -1,4 +1,4 @@
-@extends('installer::app')
+@extends('importer::app')
@section('title', 'Import Error!')
@section('content')
diff --git a/modules/Importer/Resources/views/flash/check_error.blade.php b/modules/Importer/Resources/views/flash/check_error.blade.php
new file mode 100644
index 00000000..cc67ffc0
--- /dev/null
+++ b/modules/Importer/Resources/views/flash/check_error.blade.php
@@ -0,0 +1,6 @@
+@if($errors->has($field))
+
{{ $errors->first($field) }}
+{{--
+ {{ $errors->first($field) }}
+
--}}
+@endif
diff --git a/modules/Importer/Resources/views/flash/message.blade.php b/modules/Importer/Resources/views/flash/message.blade.php
new file mode 100644
index 00000000..5633dc36
--- /dev/null
+++ b/modules/Importer/Resources/views/flash/message.blade.php
@@ -0,0 +1,11 @@
+@foreach (session('flash_notification', collect())->toArray() as $message)
+
+
+
+
+
+ {{ $message['message'] }}
+
+
+@endforeach
+{{ session()->forget('flash_notification') }}
diff --git a/modules/Installer/Resources/views/importer/step1-configure.blade.php b/modules/Importer/Resources/views/step1-configure.blade.php
similarity index 97%
rename from modules/Installer/Resources/views/importer/step1-configure.blade.php
rename to modules/Importer/Resources/views/step1-configure.blade.php
index 3a45e6f2..b50e41bd 100644
--- a/modules/Installer/Resources/views/importer/step1-configure.blade.php
+++ b/modules/Importer/Resources/views/step1-configure.blade.php
@@ -1,4 +1,4 @@
-@extends('installer::app')
+@extends('importer::app')
@section('title', 'Import Configuration')
@section('content')
@@ -125,7 +125,7 @@
db_pass: $("input[name=db_pass]").val(),
};
- $.post("{{ route('installer.dbtest') }}", opts, (data) => {
+ $.post("{{ route('importer.dbtest') }}", opts, (data) => {
$("#dbtest").html(data);
})
})
diff --git a/modules/Installer/Resources/views/importer/step2-processing.blade.php b/modules/Importer/Resources/views/step2-processing.blade.php
similarity index 93%
rename from modules/Installer/Resources/views/importer/step2-processing.blade.php
rename to modules/Importer/Resources/views/step2-processing.blade.php
index e482b457..ce6c27ce 100644
--- a/modules/Installer/Resources/views/importer/step2-processing.blade.php
+++ b/modules/Importer/Resources/views/step2-processing.blade.php
@@ -1,4 +1,4 @@
-@extends('installer::app')
+@extends('importer::app')
@section('title', 'Import Configuration')
@section('content')
@@ -37,21 +37,6 @@
--}}
+
+
+
+
+
+
+
+
+
+@yield('scripts')
+
+