@extends('admin.layouts.app') @push('scripts_header') @endpush @section('content')
New Blog
@csrf
@if($errors->has('title'))
{{ $errors->first('title') }}
@endif
@if($errors->has('blog_description'))
{{ $errors->first('blog_description') }}
@endif
@if($errors->has('posted_at'))
{{ $errors->first('posted_at') }}
@endif
{{----}}
@if($errors->has('image'))
{{ $errors->first('image') }}
@endif
Back
@endsection @push('scripts_footer') {{-- --}} @include('admin.misc.scripts.dropzone_blog') @endpush