@include('dashboard.contacts.groups')
{{Form::open(['route'=>['contactsSearch'],'method'=>'POST'])}}
{{Form::close()}}
@foreach($Contacts as $Contact)
@if(Session::has('ContactToEdit'))
@if(Session::get('ContactToEdit')->id == $Contact->id)
@endif
@endif
@endforeach
@if($Contacts->total() > env('BACKEND_PAGINATION'))
{!! $Contacts->links() !!}
@endif
@if(Session::has('ContactToEdit'))
@include('dashboard.contacts.edit')
@else
@include('dashboard.contacts.create')
@endif