@extends('layouts.admin_main') @section('content')
{{ isset($section) ? 'Edit Section' : 'New Section' }}
Home
Pricing Plan
@if(session('status'))
{{ session('status') }}
@endif
{{ isset($section) ? 'Edit Section' : 'New Section' }}
@if(isset($section))
@endif
Title
@error('title')
{{ $message }}
@enderror
Content
{{ old('content', $section->content ?? '') }}
@error('content')
{{ $message }}
@enderror
@csrf
@endsection