@extends('admin.layout.app') @section('content')
@include('admin.layout.session')
Add New Blog
@csrf
@if ($errors->has('blog_category_id'))
{{ $errors->first('blog_category_id') }}
@endif
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
Accepted formats: png, jpg, jpeg. Max file size 5Mb @if ($errors->has('image'))
{{ $errors->first('image') }}
@endif
Back
@endsection @push('js') @endpush