@extends('layouts.app') @section('title', 'Edit SEO Settings') @section('content') Edit SEO Settings {{ $seo->page_key }} {!! Form::open(['route' => ['frontpage-seo-settings.update', $seo->id], 'method' => 'put', 'files' => true]) !!} Basic SEO Meta Title Meta Description {{ old('meta_description', $seo->meta_description) }} Meta Keywords {{ old('meta_keywords', $seo->meta_keywords) }} Canonical URL Robots Meta @foreach(['index,follow', 'noindex,follow', 'index,nofollow', 'noindex,nofollow'] as $robots) robots_meta) == $robots ? 'selected' : '' }}>{{ $robots }} @endforeach Open Graph / Social Sharing OG Title OG Description {{ old('og_description', $seo->og_description) }} OG Image @if($seo->og_image) @endif Twitter Title Twitter Description {{ old('twitter_description', $seo->twitter_description) }} Twitter Image @if($seo->twitter_image) @endif Tracking Codes Google Analytics Code {{ old('google_analytics', $seo->google_analytics) }} Google Tag Manager Head Code {{ old('google_tag_manager_head', $seo->google_tag_manager_head) }} Google Tag Manager Body Code {{ old('google_tag_manager_body', $seo->google_tag_manager_body) }} Facebook Pixel Code {{ old('facebook_pixel', $seo->facebook_pixel) }} Google Search Console Verification Code / Meta Tag {{ old('google_verification', $seo->google_verification) }} Back Save SEO Settings {!! Form::close() !!} @endsection