@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') }}

@php $section_getquote = \App\Models\Section::section('get-quote'); @endphp @if(isset($section_getquote))

{{ $section_getquote->title }}

{!! $section_getquote->description !!}
@if(Session::has('success')) @endif @if(Session::has('error')) @endif @if ($errors->any()) @endif
@csrf
@foreach($services as $service)
id) checked @endif id="service-{{ $service->id }}">
@endforeach
@endif
@php $section_process = \App\Models\Section::section('process'); @endphp @if(count($processes) > 0 && isset($section_process))

{{ $section_process->title }}

{!! $section_process->description !!}
@endif @endsection