@extends('dashboard.layouts.master') @section('title', __('backend.newsletter')) @section('content')
@include('dashboard.contacts.groups')
{{Form::open(['route'=>['contactsSearch'],'method'=>'POST'])}}
{{Form::close()}}
@if($Contacts->total() > env('BACKEND_PAGINATION'))
{!! $Contacts->links() !!}
@endif
@if(Session::has('ContactToEdit')) @include('dashboard.contacts.edit') @else @include('dashboard.contacts.create') @endif
@endsection @push("after-scripts") @endpush