@extends('frontpage')
@section('title')
{{--
Audit
--}}
@stop
@section('slider-title')
{{ $form->name }}
@stop
@php
$title = "";
$description = "";
$sections = [
'contact'=>'',
]
@endphp
@section('content')
@livewire('widgets.content',['page'=>$page,'form_id'=>$form_id,'input_id'=>$input_id,'showForm'=>$showForm])
{{-- @include('frontpage.sections.title',['title'=>$title, 'description'=>$description] ) --}}
@foreach ($sections as $section => $description)
@include('frontpage.sections.'.$section)
@endforeach
@stop