@extends('layouts.admin') @section('content') @include('admin.partials.index_page.heading', ['title' => $heading_title]) @include('admin.partials.index_page.create_button', ['title' => $create_button_title])
{!! Form::label('id', 'ID') !!} {!! Form::text('id', Request::input('id'), ['class' => 'form-control search_data', 'data-search_name' => 'id', 'placeholder' => 'Enter something to search...']) !!}
{!! Form::label('email', 'Email') !!} {!! Form::text('email', Request::input('email'), ['class' => 'form-control search_data', 'data-search_name' => 'email', 'placeholder' => 'Enter something to search...']) !!}
{!! Form::label('firstname', 'First Name') !!} {!! Form::text('firstname', Request::input('firstname'), ['class' => 'form-control search_data', 'data-search_name' => 'firstname', 'placeholder' => 'Enter something to search...']) !!}
{!! Form::label('lastname', 'Last Name') !!} {!! Form::text('lastname', Request::input('lastname'), ['class' => 'form-control search_data', 'data-search_name' => 'lastname', 'placeholder' => 'Enter something to search...']) !!}
{!! Form::label('company', 'Company') !!} {!! Form::text('company', Request::input('company'), ['class' => 'form-control search_data', 'data-search_name' => 'company', 'placeholder' => 'Enter something to search...']) !!}
{!! Form::label('industry', 'Industry') !!} {!! Form::text('industry', Request::input('industry'), ['class' => 'form-control search_data', 'data-search_name' => 'industry', 'placeholder' => 'Enter something to search...']) !!}
{!! Form::label('country', 'Country') !!} {!! Form::text('country', Request::input('country'), ['class' => 'form-control search_data', 'data-search_name' => 'country', 'placeholder' => 'Enter something to search...']) !!}
{!! Form::label('position', 'Position') !!} {!! Form::text('position', Request::input('position'), ['class' => 'form-control search_data', 'data-search_name' => 'position', 'placeholder' => 'Enter something to search...']) !!}
{!! Form::button('Search', ['class' => 'btn btn-primary form-control', 'id' => 'search_button']) !!}

Subscribers

@include('admin.partials.index_page.table_container')
@endsection @push('scripts') @endpush