@if (seo('title'))
@seo('title')
@unless (seo()->hasTag('og:title'))
{{-- If an og:title tag is provided directly, it's included in the @foreach below --}}
@endunless
@endif
@if (seo('description'))
@endif
@if (seo('keywords'))
@endif
@if (seo('type'))
@else
@endif
@if (seo('site'))
@endif
@if (seo('locale'))
@endif
@if (seo('image'))
@endif
@if (seo('url'))
@endif
@foreach (seo()->tags() as $tag)
{!! $tag !!}
@endforeach
@foreach (seo()->extensions() as $extension)
@endforeach