@if (isset($title) and isset($description)) @section('title', $title) @if (isset($description)) @section('description', $description) @else @section('description', $title) @endif @if (isset($keywords)) @section('keywords', $keywords) @else @section('keywords', $title) @endif @else @if(isset($element)) @if(!empty($element->getTitleAttribute())) @section('title', $element->getTitleAttribute()) @endif @if($element->getKeywordsAttribute() and !empty($element->getKeywordsAttribute())) @section('keywords', $element->getKeywordsAttribute()) @endif @if(!empty($element->getDescriptionAttribute())) @section('description', $element->getDescriptionAttribute()) @endif @endif @endif