File: D:/HostingSpaces/SBogers85/equichecker.com/resources/views/debtors/searchForm.blade.php
<div class="panel center">
{{--Im not a robot--}}
@section('head-scripts')
<script src='https://www.google.com/recaptcha/api.js?hl={!! \App::getLocale() !!}'></script>
@endsection
<h2>@lang('dale.search_company')</h2>
<div class="seperator-line"></div>
{!! Form::open(['route'=> 'debtors.search']) !!}
{!! Form::text('search_field', Input::get('search_field', ''), ['placeholder'=>Lang::get('dale.search_company_2'), 'class' => 'form-control field']) !!}
@if(Session::get('robot.show'))
<div class="g-recaptcha" data-sitekey="{!! Config::get('robot.site_key.'.env('APP_ENV', 'production')) !!}"></div>
@endif
{!! Form::submit( Lang::get('dale.search_button'), ['class' => 'button-primary']) !!}
{!! Form::close() !!}
</div>
@if($errors->has())
@foreach($errors->all() as $error)
<div class="error center @if($errors->has('no_debtors_found') && in_array($error, $errors->get('no_debtors_found'))) not-found @endif">{!! $error !!}</div>
@endforeach
@endif