@extends('frontend.layouts.pages') @section('title', $blogArticle->title) @section('description', $blogArticle->short_description) @section('og_image', asset($blogArticle->image)) @section('content')
{{ $blogArticle->title }}
{!! ads_blog_single_article_top() !!} {!! $blogArticle->content !!} {!! ads_blog_single_article_bottom() !!}
@auth
{{ lang('Leave a comment', 'blog') }}
@csrf
{!! display_captcha() !!}
@else
{{ lang('Login or create account to leave comments', 'blog') }}
@endauth
@include('frontend.blog.includes.sidebar')
@push('scripts') {!! google_captcha() !!} @endpush @endsection