@extends('admin.layouts.app') @section('content')
Edit Blog
@csrf @method('put')
@if($errors->has('title'))
{{ $errors->first('title') }}
@endif
@if($errors->has('blog_description'))
{{ $errors->first('blog_description') }}
@endif
@php $posted_at = ($blog->posted_at) ? (\Carbon\Carbon::parse($blog->posted_at)->format('Y-m-d')) : ""; @endphp @if($errors->has('posted_at'))
{{ $errors->first('posted_at') }}
@endif
{{----}}
@if($errors->has('image'))
{{ $errors->first('image') }}
@endif
@if($errors->has('status'))
{{ $errors->first('status') }}
@endif
Back
@endsection @push('scripts_footer') {{-- --}} @include('admin.misc.scripts.dropzone_blog') @endpush