@extends('admin.template.master') @section('stylesheets') {!! Html::style('assets/admin/bower_components/select2/dist/css/select2.min.css') !!} {!! Html::style('assets/admin/plugins/treeview/treeview.css') !!} @endsection @section('title') Blog Edit Blog Home Blog Edit @endsection @section('main-content') @if(Session::has('message')) × {{Session('message')}} @endif Edit @csrf Basic Settings SEO {{--Basic Settings--}} Blog Title Category Select Category @foreach ($categories as $category) id == $blog->category_id ? 'selected' : ''}}>{{$category->category_name}} @endforeach Author Select Author @foreach ($authors as $author) id == $blog->author_id ? 'selected' : ''}}>{{$author->author_name}} @endforeach Short Description {{$blog->blog_short_description}} Long Description {{preg_replace("//", "", str_replace('', '', $blog->blog_long_description))}} Slug Blog Image Publish Date Featured Select Featured is_featured == 1 ? 'selected' : ''}}>Yes is_featured == 0 ? 'selected' : ''}}>No Status Select Status is_active == 1 ? 'selected' : ''}}>Active is_active == 0 ? 'selected' : ''}}>Inactive Meta Title Meta Keyword {{$blog->blog_meta_keyword}} Meta Description {{$blog->blog_meta_description}} Submit @endsection @section('javascripts') {!! Html::script('assets/admin/bower_components/select2/dist/js/select2.full.min.js') !!} {!! Html::script('assets/admin/plugins/treeview/treeview.js') !!} {!! Html::script('assets/admin/bower_components/ckeditor/ckeditor.js') !!} {{-- --}} @endsection