@extends('layouts.master') @section('title', __('Seo Settings')) @section('breadcum') @endsection @section('maincontent')
{{__('Seo Settings')}}
@if ($seo) {!! Form::model($seo, ['method' => 'PATCH', 'action' => ['SeoController@update', $seo->id], 'files' => true]) !!}
{!! Form::label('author',__('Author Name')) !!} {!! Form::text('author', null, ['placeholder' => __('EnterAuthorName'),'id' => 'textbox', 'class' => 'form-control']) !!} {{ $errors->first('author') }}
{!! Form::label('description', __('Metadata Description')) !!} {!! Form::textarea('description', null, ['id' => 'textbox', 'class' => 'form-control']) !!} {{ $errors->first('description') }}
{!! Form::label('keyword', __('Metadata Keyword')) !!} {!! Form::textarea('keyword', null, ['placeholder' => __('Keyword Placeholder'),'id' => 'textbox', 'class' => 'form-control']) !!} {{ $errors->first('keyword') }}
{!! Form::label('google',__('Google Analytics')) !!} {!! Form::text('google', null, ['class' => 'form-control']) !!} {{ $errors->first('google') }}
{!! Form::label('fb', __('Facebook Pixcal')) !!} {!! Form::text('fb', null, ['id' => 'textbox1', 'class' => 'form-control']) !!} {{ $errors->first('fb') }}
{!! Form::close() !!} @endif
{{ __('SITE MAP SETTTINGS') }}
{!! Form::label('sitemap', __('Generate Sitemap')) !!}
{{ __('Generate') }} @if(@file_get_contents(public_path().'/sitemap.xml')) downloadSitemap.xml | visibilitySitemap @endif
@endsection @section('script') @endsection