@extends('layouts.master') @section('title') @lang('Title') @endsection @section('css') @endsection @section('content')
Blog
@if ($message = Session::get('success'))
{{ $message }}
@endif
@method('PUT') {{ csrf_field() }} @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @php // $file_array=array(); $fileData = []; // Initialize as an array before appending @endphp
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif
@if ($errors->has('summary'))
{{ $errors->first('summary') }}
@endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
@if ($errors->has('created_date'))
{{ $errors->first('created_date') }}
@endif
@if (in_array($blog->id, $idarray)) @else
@if ($errors->has('meta_title'))
{{ $errors->first('meta_title') }}
@endif
@if ($errors->has('meta_description'))
{{ $errors->first('meta_description') }}
@endif
@php $fileData = getGalleryFiles($resgallery); // $fileName = json_encode($file_array); @endphp
@endif
@endsection @section('script') @include('admin.dropzone-single-edit') @endsection