@extends('user-front.layout') @section('tab-title') {{$keywords["Quote"] ?? "Quote"}} @endsection @section('meta-description', !empty($userSeo) ? $userSeo->quote_meta_description : '') @section('meta-keywords', !empty($userSeo) ? $userSeo->quote_meta_keywords : '') @section('page-name') {{$keywords["Quote"] ?? "Quote"}} @endsection @section('br-name') {{$keywords["Quote"] ?? "Quote"}} @endsection @section('content') @php config(['app.locale' => $userCurrentLang->code]); @endphp
@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")}}">
@if ($errors->has("$input->name"))

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

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

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

@endif
@endif @if($input->type == 3)
@foreach ($input->quote_input_options as $option)
name")) && in_array($option->name, old("$input->name")) ? 'checked' : ''}} id="option{{$option->id}}" class="sq-16">
@endforeach
@if ($errors->has("$input->name"))

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

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

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

@endif
@endif @if ($input->type == 6)
name")}}" placeholder="{{$input->placeholder}}" autocomplete="off"> @if ($errors->has("$input->name"))

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

@endif
@endif @if ($input->type == 7)
name")}}" placeholder="{{$input->placeholder}}" autocomplete="off"> @if ($errors->has("$input->name"))

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

@endif
@endif @if ($input->type == 5)

** {{$keywords["Only_zip_file_is_allowed"] ?? "Only zip file is allowed"}}

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

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

@endif
@endif @endforeach
@endsection