@extends('admin.master') @section('main')

Update About us content

@csrf @method('PUT')
@if($errors->has('title'))
{{ $errors->first('title') }}
@endif
@if($errors->has('description'))
{{ $errors->first('description') }}
@endif
@if(isset($aboutUs->image))
Current Image
@endif @if($errors->has('image'))
{{ $errors->first('image') }}
@endif
@endsection