@extends('adminlte::page') @section('css') @endsection @section('title', 'Blog Create') @section('content_header') @stop @section('content')
@if(Session::has('error'))

{{ Session::get('error') }}

@endif

Create Blog Post

@if(Session::has('message'))

{{ Session::get('message') }}

@endif @livewire('dashboard.blog.blog-form', ['blog' => $blog])
@endsection