@extends('web.layouts.master') @php $header = \App\Models\PageSetup::page('get-quote'); @endphp @if(isset($header)) @section('title', $header->meta_title) @section('top_meta_tags') @if(isset($header->meta_description)) @else @endif @if(isset($header->meta_keywords)) @else @endif @endsection @endif @section('content') {{ __('navbar.get_quote') }} {{ __('navbar.get_quote') }} {{ __('navbar.home') }} @php $section_getquote = \App\Models\Section::section('get-quote'); @endphp @if(isset($section_getquote)) {{ $section_getquote->title }} {!! $section_getquote->description !!} @if(Session::has('success')) × {{ Session::get('success') }} @endif @if(Session::has('error')) × {{ Session::get('error') }} @endif @if ($errors->any()) × @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif @csrf {{ __('form.prefer_contact') }} {{ __('form.phone') }} {{ __('form.email') }} {{ __('form.services') }} @foreach($services as $service) id) checked @endif id="service-{{ $service->id }}"> {{ $service->title }} @endforeach {{ old('message') }} {{ __('form.upload_file') }} {{ __('form.submit') }} @endif @php $section_process = \App\Models\Section::section('process'); @endphp @if(count($processes) > 0 && isset($section_process)) {{ $section_process->title }} {!! $section_process->description !!} @foreach($processes as $key => $process) {{ $key + 1 }}{{ $process->title }} {!! $process->description !!} @endforeach @endif @endsection