@extends('layouts.admin.index') @section('content')
Info:
  • Description field is on the left side.
  • Upload Image field is on the right side.
Once you submit, your new "About Us" entry will show the description and image in this layout.

Dashboard

Data Products
@if(session('success'))
{{ session('success') }}
@endif
@csrf
@error('image')
{{ $message }}
@enderror
@error('descAboutUs')
{{ $message }}
@enderror
@if(isset($about))

Current Entry:

@if($about->image) About Us Image @else No image available @endif

{{ $about->descAboutUs }}

@csrf
@endif
@endsection