@extends('admin.layouts.master') @section('title', ucwords(str_replace('-', ' ', $slug)) . ' | Edit Section Title') @section('content') @include('admin.page.top-nav')
@include('admin.page.side-nav')
{{-- content --}}

{{ __('Section Title Edit') }}

@csrf
@if ($errors->has('section_title.en'))

{{ $errors->first('section_title.en') }}

@endif
@if ($errors->has('section_title.ar'))

{{ $errors->first('section_title.ar') }}

@endif
@if ($errors->has('section_subtitle.en'))

{{ $errors->first('section_subtitle.en') }}

@endif
@if ($errors->has('section_subtitle.ar'))

{{ $errors->first('section_subtitle.ar') }}

@endif
@if ($errors->has('section_description.en'))

{{ $errors->first('section_description.en') }}

@endif
@if ($errors->has('section_description.ar'))

{{ $errors->first('section_description.ar') }}

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

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

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

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

@endif
@endsection