@extends('admin.layout.app') @section('content')
@include('admin.layout.session')
Edit Blog
@csrf @method('put')
@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
@if($blog->image != '') @endif
Back
@endsection @push('js') @endpush