@extends('backend.layout') {{-- this style will be applied when the direction of language is right-to-left --}} @includeIf('backend.partials.rtl-style') @section('content')
@csrf
{{ __('Update Page Headings') }}
@includeIf('backend.partials.languages')
@if ($errors->has('blog_page_title'))

{{ $errors->first('blog_page_title') }}

@endif
@if ($errors->has('blog_details_page_title'))

{{ $errors->first('blog_details_page_title') }}

@endif
@if ($errors->has('contact_page_title'))

{{ $errors->first('contact_page_title') }}

@endif
@if ($errors->has('courses_page_title'))

{{ $errors->first('courses_page_title') }}

@endif
@if ($errors->has('course_details_page_title'))

{{ $errors->first('course_details_page_title') }}

@endif
@if ($errors->has('faq_page_title'))

{{ $errors->first('faq_page_title') }}

@endif
@if ($errors->has('forget_password_page_title'))

{{ $errors->first('forget_password_page_title') }}

@endif
@if ($errors->has('instructors_page_title'))

{{ $errors->first('instructors_page_title') }}

@endif
@if ($errors->has('login_page_title'))

{{ $errors->first('login_page_title') }}

@endif
@if ($errors->has('signup_page_title'))

{{ $errors->first('signup_page_title') }}

@endif
@endsection