- {{ Form::bulkActionGroup($item->id, $item->name) }} |
- {{ $item->display_name }} |
- {{ $item->name }} |
- {{ $item->description }} |
-
+ | {{ Form::bulkActionGroup($item->id, $item->name) }} |
+ {{ $item->display_name }} |
+ {{ $item->name }} |
+ {{ $item->description }} |
+
diff --git a/resources/views/auth/roles/index.blade.php b/resources/views/auth/roles/index.blade.php
index 93f645a37..fdf61bb38 100644
--- a/resources/views/auth/roles/index.blade.php
+++ b/resources/views/auth/roles/index.blade.php
@@ -43,19 +43,19 @@
@foreach($roles as $item)
- {{ Form::bulkActionGroup($item->id, $item->name) }} |
- {{ $item->display_name }} |
- {{ $item->name }} |
- {{ $item->description }} |
-
+ | {{ Form::bulkActionGroup($item->id, $item->name) }} |
+ {{ $item->display_name }} |
+ {{ $item->name }} |
+ {{ $item->description }} |
+
diff --git a/resources/views/auth/users/index.blade.php b/resources/views/auth/users/index.blade.php
index 3a1f9e642..e01ea6f22 100644
--- a/resources/views/auth/users/index.blade.php
+++ b/resources/views/auth/users/index.blade.php
@@ -44,8 +44,8 @@
@foreach($users as $item)
- {{ Form::bulkActionGroup($item->id, $item->name) }} |
-
+ | {{ Form::bulkActionGroup($item->id, $item->name) }} |
+
@if (setting('default.use_gravatar', '0') == '1')
@@ -57,13 +57,13 @@
{{ $item->name }}
|
- {{ $item->email }} |
-
+ | {{ $item->email }} |
+
@foreach($item->roles as $role)
@endforeach
|
-
+ |
@if (user()->can('update-auth-users'))
{{ Form::enabledGroup($item->id, $item->name, $item->enabled) }}
@else
@@ -74,7 +74,7 @@
@endif
@endif
|
-
+ |
diff --git a/resources/views/banking/reconciliations/create.blade.php b/resources/views/banking/reconciliations/create.blade.php
index 08cb7061f..b477cffa0 100644
--- a/resources/views/banking/reconciliations/create.blade.php
+++ b/resources/views/banking/reconciliations/create.blade.php
@@ -16,7 +16,7 @@
]) !!}
{!! Form::open([
- 'url' => 'banking/reconciliations',
+ 'url' => 'banking/reconciliations/create',
'role' => 'form',
'class' => 'form-loading-button',
'id' => 'form-reconciliations',
@@ -78,10 +76,8 @@
{{ $item->contact->name }} |
@if ($item->type == 'income')
@money($item->amount, $item->currency_code, true) |
- N/A |
@else
N/A |
- @money($item->amount, $item->currency_code, true) |
@endif
{{ Form::checkbox('transactions['. $item->id . '_'. $item->type . ']', $item->amount, $item->reconciled) }} |
|
@@ -114,13 +110,14 @@
@if ($transactions->count())
+
{!! Form::button(
' ' . ' ' . trans('reconciliations.reconcile') . '',
- [':disabled' => 'form.loading', 'type' => 'submit', 'class' => 'btn btn-icon btn-info button-submit header-button-top', 'data-loading-text' => trans('general.loading')]) !!}
+ [':disabled' => 'form.loading', 'type' => 'submit', 'class' => 'btn btn-icon btn-info header-button-top', 'data-loading-text' => trans('general.loading')]) !!}
{!! Form::button(
' ' . ' ' . trans('general.save') . '',
- [':disabled' => 'form.loading', 'type' => 'submit', 'class' => 'btn btn-icon btn-success button-submit header-button-top', 'data-loading-text' => trans('general.loading')]) !!}
+ [':disabled' => 'form.loading', 'type' => 'submit', 'class' => 'btn btn-icon btn-success header-button-top', 'data-loading-text' => trans('general.loading')]) !!}
@else
diff --git a/resources/views/banking/reconciliations/index.blade.php b/resources/views/banking/reconciliations/index.blade.php
index c2e6c3a6f..be7adacb0 100644
--- a/resources/views/banking/reconciliations/index.blade.php
+++ b/resources/views/banking/reconciliations/index.blade.php
@@ -4,7 +4,7 @@
@section('new_button')
@permission('create-banking-reconciliations')
- {{ trans('general.add_new') }}
+
@endpermission
@endsection
@@ -12,7 +12,7 @@
| |