{{-- form-support --}} {!! Form::open([ 'url' => route('support'), 'method' => 'post', 'id' => 'smart-form', ]) !!} @if(isset($currentParams['id'])) {!! Form::hidden('bid', $currentParams['id'], ['id' => 'bid']) !!} @endif @if($email_support_active) {!! Form::hidden('email_support_tastyboom', config('custom.email_support_tastyboom'), ['id' => 'email_support_tastyboom']) !!} @endif {!! Form::hidden('email_support', $email_support) !!} {!! Form::hidden('color_theme', $template_config->template->color) !!} {!! Form::hidden('about', trans('info.form.auto_about', ['resto' => $_restaurant->name])) !!}
@if(!isset($currentParams['id']))
@endif
{!! Form::text('captcha', '', [ 'id' => 'captcha', 'class' => 'gui-input', 'placeholder' => trans('reservation.form.captcha') ]) !!}
{!! Form::close() !!} @section('extra-head') @parent {{-- Html::style('css/reload-captcha.css', [], $isSSL) --}} {!! Html::style(app()->environment('production') ? mix('css/reload-captcha.css') : asset('css/reload-captcha.css'), [], $isSSL) !!} @endsection @section('extra-scripts') @parent {!! Html::script('js/reload-captcha.js', [], Request::secure()) !!} @endsection