@include('admin.sidebar')
Add Blog Post
Dashboard > Blogs > Add Blog Post
@if($unreadEnquiriesCount > 0) {{ $unreadEnquiriesCount }} @endif
@csrf
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Blog Content (Already Added Above)

Choose Photo

Top Advantages Section

@if(old('adv_title')) @foreach(old('adv_title') as $idx => $adv_title)
@endforeach @endif

Popular Courses Section

@if(old('course_name')) @foreach(old('course_name') as $idx => $course_name)
@endforeach @endif

Cost of Studying Table

@if(old('cost_head')) @foreach(old('cost_head') as $idx => $cost_head)
@endforeach @endif

Additional Custom Sections

@if(old('custom_sec_title')) @foreach(old('custom_sec_title') as $idx => $custom_sec_title)
@endforeach @endif

Conclusion Section

@include('admin.seo_settings', ['post' => new \App\Models\Post])