@extends("front.$version.layout") @section('pagename') - {{__('Request A Quote')}} @endsection @section('meta-keywords', "$be->quote_meta_keywords") @section('meta-description', "$be->quote_meta_description") @section('breadcrumb-title', $bs->quote_title) @section('breadcrumb-subtitle', $bs->quote_subtitle) @section('breadcrumb-link', __('Quote Page')) @section('content')
@csrf
@if ($errors->has("name"))

{{$errors->first("name")}}

@endif
@if ($errors->has("email"))

{{$errors->first("email")}}

@endif
@foreach ($inputs as $input)
@if ($input->type == 1) name")}}" placeholder="{{convertUtf8($input->placeholder)}}"> @endif @if ($input->type == 2) @endif @if ($input->type == 3) @foreach ($input->quote_input_options as $option)
name")) && in_array(convertUtf8($option->name), old("$input->name")) ? 'checked' : ''}}>
@endforeach @endif @if ($input->type == 4) @endif @if ($input->type == 6) name")}}" placeholder="{{convertUtf8($input->placeholder)}}" autocomplete="off"> @endif @if ($input->type == 7) name")}}" placeholder="{{convertUtf8($input->placeholder)}}" autocomplete="off"> @endif @if ($input->type == 5)

** {{__('Only zip file is allowed')}}

@endif @if ($errors->has("$input->name"))

{{$errors->first("$input->name")}}

@endif
@endforeach
@if ($bs->is_recaptcha == 1)
{!! NoCaptcha::renderJs() !!} {!! NoCaptcha::display() !!} @if ($errors->has('g-recaptcha-response')) @php $errmsg = $errors->first('g-recaptcha-response'); @endphp

{{__("$errmsg")}}

@endif
@endif
@endsection