??
You're inside public_html, but wp-admin or wp-content was not found.
Savvy
W
olf -
MANAGER
Edit File: seo.blade.php
@if(Helper::GeneralWebmasterSettings("seo_status")) <div class="tab-pane {{ $tab_2 }}" id="tab_seo"> <div class="box-body"> {{Form::open(['route'=>['categoriesSEOUpdate',"webmasterId"=>$WebmasterSection->id,"id"=>$Sections->id],'method'=>'POST'])}} @foreach(Helper::languagesList() as $ActiveLanguage) @if($ActiveLanguage->box_status) <div class="row"> <div class="col-sm-6"> <div class="form-group"> <div> <small>{!! __('backend.topicSEOTitle') !!}</small> {!! @Helper::languageName($ActiveLanguage) !!} {!! Form::text('seo_title_'.@$ActiveLanguage->code,$Sections->{'seo_title_'.@$ActiveLanguage->code}, array('class' => 'form-control','id'=>'seo_title_'.@$ActiveLanguage->code,'maxlength'=>'65', 'dir'=>@$ActiveLanguage->direction)) !!} </div> </div> <div class="form-group"> <div> <small>{!! __('backend.friendlyURL') !!}</small> {!! @Helper::languageName($ActiveLanguage) !!} {!! Form::text('seo_url_slug_'.@$ActiveLanguage->code,$Sections->{'seo_url_slug_'.@$ActiveLanguage->code}, array('class' => 'form-control','id'=>'seo_url_slug_'.@$ActiveLanguage->code, 'dir'=>@$ActiveLanguage->direction)) !!} </div> </div> <div class="form-group"> <div> <small>{!! __('backend.topicSEODesc') !!}</small> {!! @Helper::languageName($ActiveLanguage) !!} {!! Form::textarea('seo_description_'.@$ActiveLanguage->code,$Sections->{'seo_description_'.@$ActiveLanguage->code}, array('class' => 'form-control','id'=>'seo_description_'.@$ActiveLanguage->code,'maxlength'=>'165', 'dir'=>@$ActiveLanguage->direction,'rows'=>'2')) !!} </div> </div> <div class="form-group"> <div> <small>{!! __('backend.topicSEOKeywords') !!}</small> {!! @Helper::languageName($ActiveLanguage) !!} {!! Form::textarea('seo_keywords_'.@$ActiveLanguage->code,$Sections->{'seo_keywords_'.@$ActiveLanguage->code}, array('class' => 'form-control','id'=>'seo_keywords_'.@$ActiveLanguage->code, 'dir'=>@$ActiveLanguage->direction,'rows'=>'2')) !!} </div> </div> <br> <br> </div> <div class="col-sm-6"> <?php $seo_example_title = $Sections->{'title_' . @$ActiveLanguage->code}; $seo_example_desc = Helper::GeneralSiteSettings("site_desc_" . @$ActiveLanguage->code); if ($Sections->{'seo_title_' . @$ActiveLanguage->code} != "") { $seo_example_title = $Sections->{'seo_title_' . @$ActiveLanguage->code}; } if ($Sections->{'seo_description_' . @$ActiveLanguage->code} != "") { $seo_example_desc = $Sections->{'seo_description_' . @$ActiveLanguage->code}; } $seo_example_url = Helper::categoryURL($Sections->id, @$ActiveLanguage->code); ?> <div class="form-group"> <div class="search-example-div"> {!! @Helper::languageName($ActiveLanguage) !!} <div class="search-example" dir="{{ @$ActiveLanguage->direction }}"> <a id="title_in_engines_{{ @$ActiveLanguage->code }}" href="{{ $seo_example_url }}" target="_blank">{{ $seo_example_title }}</a> <span id="url_in_engines_{{ @$ActiveLanguage->code }}">{{ $seo_example_url }}</span> <div id="desc_in_engines_{{ @$ActiveLanguage->code }}">{{ $seo_example_desc }} ... </div> </div> </div> </div> <div class="form-group"> <div> <i class="material-icons"></i> <small>{!! __('backend.seoTabSettings') !!}</small> </div> </div> <br> <br> </div> </div> @endif @endforeach <div class="form-group"> <div> <button type="submit" class="btn btn-primary m-t"><i class="material-icons"> </i> {!! __('backend.update') !!}</button> <a href="{{ route('topics',$WebmasterSection->id) }}" class="btn btn-default m-t"><i class="material-icons"> </i> {!! __('backend.cancel') !!}</a> </div> </div> {{Form::close()}} </div> </div> @endif