@extends('admin.layout.app') @section('title', 'Create Blog') @section('content')
Create Blog
Back
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf {{-- Category & Title --}}
{{-- Slug --}}
{{-- Short Description --}}
{{-- Content --}}
{{-- Featured Image --}}
{{-- Meta --}}
{{-- Submit --}}
@push('scripts') @endpush @endsection