diff --git a/resources/views/auth/forgot/create.blade.php b/resources/views/auth/forgot/create.blade.php index 7d07f4905..044762450 100644 --- a/resources/views/auth/forgot/create.blade.php +++ b/resources/views/auth/forgot/create.blade.php @@ -7,6 +7,7 @@ @section('content') + {!! Form::open([ 'route' => 'forgot', 'id' => 'forgot', diff --git a/resources/views/auth/login/create.blade.php b/resources/views/auth/login/create.blade.php index aef27a2db..f7e669797 100644 --- a/resources/views/auth/login/create.blade.php +++ b/resources/views/auth/login/create.blade.php @@ -6,6 +6,7 @@ @section('content') + {!! Form::open([ 'route' => 'login', 'id' => 'login', diff --git a/resources/views/auth/permissions/index.blade.php b/resources/views/auth/permissions/index.blade.php index bf8f3c97a..706f7ed4e 100644 --- a/resources/views/auth/permissions/index.blade.php +++ b/resources/views/auth/permissions/index.blade.php @@ -2,7 +2,7 @@ @section('title', trans_choice('general.permissions', 2)) -@permission('update-auth-permissions') +@permission('create-auth-permissions') @section('new_button')  {{ trans('general.add_new') }} @endsection diff --git a/resources/views/modules/home/index.blade.php b/resources/views/modules/home/index.blade.php index 46eef2113..a0dc1c0fe 100644 --- a/resources/views/modules/home/index.blade.php +++ b/resources/views/modules/home/index.blade.php @@ -10,57 +10,61 @@ @section('content') @include('partials.modules.bar') - @if ($pre_sale) -

{{ trans('modules.pre_sale') }}

-
- @if ($pre_sale->data) - @foreach ($pre_sale->data as $module) - @include('partials.modules.pre_sale') - @endforeach - @else - @include('partials.modules.no_apps') - @endif -
- @endif + @if ($pre_sale) +

{{ trans('modules.pre_sale') }}

- @if ($paid) -

{{ trans('modules.top_paid') }}

-
- @if ($paid->data) - @foreach ($paid->data as $module) - @include('partials.modules.item') - @endforeach - @else - @include('partials.modules.no_apps') - @endif -
- @endif +
+ @if ($pre_sale->data) + @foreach ($pre_sale->data as $module) + @include('partials.modules.pre_sale') + @endforeach + @else + @include('partials.modules.no_apps') + @endif +
+ @endif - @if ($new) -

{{ trans('modules.new') }}

-
- @if ($new->data) - @foreach ($new->data as $module) - @include('partials.modules.item') - @endforeach - @else - @include('partials.modules.no_apps') - @endif -
- @endif + @if ($paid) +

{{ trans('modules.top_paid') }}

- @if ($free) -

{{ trans('modules.top_free') }}

-
- @if ($free->data) - @foreach ($free->data as $module) - @include('partials.modules.item') - @endforeach - @else - @include('partials.modules.no_apps') - @endif -
- @endif +
+ @if ($paid->data) + @foreach ($paid->data as $module) + @include('partials.modules.item') + @endforeach + @else + @include('partials.modules.no_apps') + @endif +
+ @endif + + @if ($new) +

{{ trans('modules.new') }}

+ +
+ @if ($new->data) + @foreach ($new->data as $module) + @include('partials.modules.item') + @endforeach + @else + @include('partials.modules.no_apps') + @endif +
+ @endif + + @if ($free) +

{{ trans('modules.top_free') }}

+ +
+ @if ($free->data) + @foreach ($free->data as $module) + @include('partials.modules.item') + @endforeach + @else + @include('partials.modules.no_apps') + @endif +
+ @endif @endsection @push('scripts_start') diff --git a/resources/views/modules/item/pre_sale.blade.php b/resources/views/modules/item/pre_sale.blade.php index 8c23e2050..b41da218d 100644 --- a/resources/views/modules/item/pre_sale.blade.php +++ b/resources/views/modules/item/pre_sale.blade.php @@ -13,6 +13,7 @@

{{ $module->name }}

+