Fixed script imports in setup.blade.php
This commit is contained in:
parent
11f128a84f
commit
c090a2f0b6
1 changed files with 2 additions and 7 deletions
|
@ -9,11 +9,6 @@
|
||||||
<link rel="stylesheet" href="{{ mix('css/all.css') }}">
|
<link rel="stylesheet" href="{{ mix('css/all.css') }}">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script nonce="{{ csrf_token() }}">
|
<script nonce="{{ csrf_token() }}">
|
||||||
window.snipeit = {
|
window.snipeit = {
|
||||||
settings: {
|
settings: {
|
||||||
|
@ -119,8 +114,8 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script src="{{ url(mix('js/dist/all.js')) }}" nonce="{{ csrf_token() }}"></script>
|
<script src="{{ url(mix('js/app.js')) }}" nonce="{{ csrf_token() }}"></script>
|
||||||
|
<script src="{{ url(mix('js/vendor.js')) }}" nonce="{{ csrf_token() }}"></script>
|
||||||
<script nonce="{{ csrf_token() }}">
|
<script nonce="{{ csrf_token() }}">
|
||||||
$(function () {
|
$(function () {
|
||||||
$(".select2").select2();
|
$(".select2").select2();
|
||||||
|
|
Loading…
Add table
Reference in a new issue