diff --git a/resources/views/email_template/index.blade.php b/resources/views/email_template/index.blade.php
index d621e941..c45eca09 100755
--- a/resources/views/email_template/index.blade.php
+++ b/resources/views/email_template/index.blade.php
@@ -1,17 +1,23 @@
@extends('layouts.app')
@section('content')
-
-
-
+@section('content')
+@include('layouts.partials._header', ['title' => __('E-mail templates')])
+@include('layouts.partials._search_buttons_bar', [
+ 'action_search' => url("/email-template"),
+ 'buttons' => [
+ ['url' => url('/email-template/create'), 'class' => 'btn btn-primary', 'text' => __('New')]
+ ]
+])
- @foreach($templates as $template)
-
-
![]({{ $template->screenshot }})
+
+
+ @foreach($templates as $template)
+
+
![]({{ $template->screenshot }})
+
+ @endforeach
- @endforeach
+
+
@endsection
diff --git a/resources/views/layouts/partials/_search_buttons_bar.blade.php b/resources/views/layouts/partials/_search_buttons_bar.blade.php
new file mode 100644
index 00000000..e548077d
--- /dev/null
+++ b/resources/views/layouts/partials/_search_buttons_bar.blade.php
@@ -0,0 +1,19 @@
+
+
+ @foreach ($buttons as $button)
+
+ @endforeach
+
diff --git a/resources/views/lead/index.blade.php b/resources/views/lead/index.blade.php
index 6769ef99..8be9e68c 100755
--- a/resources/views/lead/index.blade.php
+++ b/resources/views/lead/index.blade.php
@@ -2,25 +2,23 @@
@section('content')
@include('layouts.partials._header', ['title' => __('Leads'), 'count' => $lead_count])
+@include('layouts.partials._search_buttons_bar', [
+ 'action_search' => url("/lead"),
+ 'buttons' => [
+ ['url' => url('/lead/create'), 'class' => 'btn btn-primary', 'text' => __('New')],
+ ['url' => url('/lead/import'), 'class' => 'btn btn-success', 'text' => __('Import'), 'icon_class' => 'las la-file-csv']
+ ]
+])
+@if(\Illuminate\Support\Facades\Auth::user()->hasRole(['SuperAdmin', 'CompanyAdmin']))
+@endif
@if(session('status'))
@@ -35,13 +33,6 @@
diff --git a/resources/views/order/index.blade.php b/resources/views/order/index.blade.php
index f350a4fc..26ff061e 100755
--- a/resources/views/order/index.blade.php
+++ b/resources/views/order/index.blade.php
@@ -2,10 +2,12 @@
@section('content')
@include('layouts.partials._header', ['title' => __('Orders')])
-
-
+@include('layouts.partials._search_buttons_bar', [
+ 'action_search' => url("/order"),
+ 'buttons' => [
+ ['url' => url('/order/create'), 'class' => 'btn btn-primary', 'text' => __('New')]
+ ]
+])
diff --git a/resources/views/product/index.blade.php b/resources/views/product/index.blade.php
index c2a9a07d..dff2c913 100755
--- a/resources/views/product/index.blade.php
+++ b/resources/views/product/index.blade.php
@@ -2,26 +2,14 @@
@section('content')
@include('layouts.partials._header', ['title' => __('Products'), 'count' => $product_count])
+@include('layouts.partials._search_buttons_bar', [
+ 'action_search' => url("/product"),
+ 'buttons' => [
+ ['url' => url('/product/create'), 'class' => 'btn btn-primary', 'text' => __('New')],
+ ['url' => url('/product/import'), 'class' => 'btn btn-success', 'text' => __('Import'), 'icon_class' => 'las la-file-csv']
+ ]
+])
-
-
-
diff --git a/resources/views/report/index.blade.php b/resources/views/report/index.blade.php
index ea75acf0..a19cfd66 100755
--- a/resources/views/report/index.blade.php
+++ b/resources/views/report/index.blade.php
@@ -1,10 +1,7 @@
@extends('layouts.app')
@section('content')
-
-
+@include('layouts.partials._header', ['title' => __('Reports')])
diff --git a/resources/views/setting/index.blade.php b/resources/views/setting/index.blade.php
index 312e38d6..27c88ebe 100755
--- a/resources/views/setting/index.blade.php
+++ b/resources/views/setting/index.blade.php
@@ -1,9 +1,8 @@
@extends('layouts.app')
@section('content')
-
+@include('layouts.partials._header', ['title' => __('Settings')])
+
@can('read company')
@@ -21,6 +20,9 @@
@endcan
+
+
+
+
@endsection
diff --git a/resources/views/supplier/index.blade.php b/resources/views/supplier/index.blade.php
index dbf176a6..58803309 100755
--- a/resources/views/supplier/index.blade.php
+++ b/resources/views/supplier/index.blade.php
@@ -2,10 +2,12 @@
@section('content')
@include('layouts.partials._header', ['title' => __('Suppliers')])
-
-
+ @include('layouts.partials._search_buttons_bar', [
+ 'action_search' => url("/supplier"),
+ 'buttons' => [
+ ['url' => url('/supplier/create'), 'class' => 'btn btn-primary', 'text' => __('New')],
+ ]
+ ])
diff --git a/resources/views/ticket/index.blade.php b/resources/views/ticket/index.blade.php
index 277288f0..0b0dee5f 100755
--- a/resources/views/ticket/index.blade.php
+++ b/resources/views/ticket/index.blade.php
@@ -2,23 +2,12 @@
@section('content')
@include('layouts.partials._header', ['title' => __('Tickets')])
-
-
-
-
+ @include('layouts.partials._search_buttons_bar', [
+ 'action_search' => url("/ticket"),
+ 'buttons' => [
+ ['url' => url('/ticket/create'), 'class' => 'btn btn-primary', 'text' => __('New')],
+ ]
+ ])