@extends('layouts.front')
@section('page_title')
@parent
@if($page->metatitle) {{$page->metatitle}} @else {{$page->title}} @endif
@endsection
@section('head-js')
@stop
@section('meta')
@stop
@section('main')
{!! $page->content !!}
@if(count($faqs) > 0)
@foreach($faqs as $faq)
@endforeach
@endif
@stop