@extends('admin.layouts.admin') @section('title') Admin | Feature Post Edit @endsection @section('content')

Feature/Post

Feature Post Edit
@if(Session::has('success'))
{{ Session::get('success') }}
@endif @if(Session::has('error'))
{{ Session::get('error') }}
@endif
$blog->id])}}" method="POST" enctype="multipart/form-data"> {{ csrf_field() }} @if(!empty($blog)) @method('PUT') @endif
@if ($errors->has('title')) {{ $errors->first('title') }} @endif
@if ($errors->has('slug')) {{ $errors->first('slug') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
@if(!empty($blog->photo) && $blog->photo->file_path) Post Image @endif
@if ($errors->has('image')) {{ $errors->first('image') }} @endif
@php $blogsAuthor = blogUser(); @endphp
@php $catgories = getCategory(); @endphp
@if ($errors->has('tags')) {{ $errors->first('tags') }} @endif
@if ($errors->has('meta_title')) {{ $errors->first('meta_title') }} @endif
@if ($errors->has('meta_description')) {{ $errors->first('meta_description') }} @endif
@if ($errors->has('meta_keywords')) {{ $errors->first('meta_keywords') }} @endif
Cancel
@endsection @section('scripts') @endsection