@extends('layouts.admin.app') @section('content')
Seo Meta
@csrf

Add Seo Meta

@if(Session::has('success'))
{{ Session::get('success') }}
@endif @if(Session::has('error'))
{{ Session::get('error') }}
@endif
@if ($errors->has('url')) {{ $errors->first('url') }} @endif
@if ($errors->has('title')) {{ $errors->first('title') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
@if ($errors->has('keywords')) {{ $errors->first('keywords') }} @endif
@if ($errors->has('ogtitle')) {{ $errors->first('ogtitle') }} @endif
@if ($errors->has('ogdescription')) {{ $errors->first('ogdescription') }} @endif
@if ($errors->has('ogimage')) {{ $errors->first('ogimage') }} @endif
@if ($errors->has('ogimageurl')) {{ $errors->first('ogimageurl') }} @endif
@if ($errors->has('ogurl')) {{ $errors->first('ogurl') }} @endif
@if ($errors->has('twittercard')) {{ $errors->first('twittercard') }} @endif
@if ($errors->has('twittersite')) {{ $errors->first('twittersite') }} @endif
@if ($errors->has('twittercreater')) {{ $errors->first('twittercreater') }} @endif
@if ($errors->has('h1')) {{ $errors->first('h1') }} @endif
@if ($errors->has('h2')) {{ $errors->first('h2') }} @endif
@if ($errors->has('h3')) {{ $errors->first('h3') }} @endif
@if ($errors->has('h4')) {{ $errors->first('h4') }} @endif
@if ($errors->has('status')) {{ $errors->first('status') }} @endif
@if(isset($seoId) && $seoId!="") @else @endif
@include('layouts.admin.footer') @endsection