@extends('layouts.admin-main') @section('content')

Add Blog

@csrf
@if($errors->has('title'))
{{ $errors->first('title') }}
@endif
Upload Image
@if($errors->has('image'))
{{ $errors->first('image') }}
@endif
@if($errors->has('description'))
{{ $errors->first('description') }}
@endif
Cancel
@endsection