@extends('layouts.backend.app') @section('style') @endsection @section('content')

{{ __('Edit Post') }}

@csrf @method('PUT')
@php $arr['title']= 'Post Title'; $arr['id']= 'name'; $arr['type']= 'text'; $arr['placeholder']= 'Post Title'; $arr['name']= 'title'; $arr['is_required'] = true; $arr['value'] = $info->title; echo input($arr); $arr1['title']= 'Post Slug'; $arr1['id']= 'slug'; $arr1['type']= 'text'; $arr1['placeholder']= 'Post Slug'; $arr1['name']= 'slug'; $arr1['is_required'] = true; $arr1['value'] = $info->slug; echo input($arr1); $arr['title']= 'Excerpt'; $arr['id']= 'excerpt'; $arr['placeholder']= 'short description'; $arr['name']= 'excerpt'; $arr['is_required'] = true; $arr['value'] = $info->excerpt->content; echo textarea($arr); $arrn['title']= 'Post Content'; $arrn['name']= 'content'; $arrn['value']= $info->content->content; echo editor($arrn); @endphp

{{ __('Search Engine Optimization') }}

{{ $info->title }}
'{{ url('/').'/post/'.$info->slug }}

{{ $info->excerpt->content }}

{{ __('Publish') }}

{{ __('Status') }}


Fatal error: Uncaught Error: Call to undefined function adminLang() in /var/www/html/repo/multi-resturant-food-ordering-restaurant-management-with-saas32/files/script/resources/views/admin/posts/edit.blade.php:100 Stack trace: #0 {main} thrown in /var/www/html/repo/multi-resturant-food-ordering-restaurant-management-with-saas32/files/script/resources/views/admin/posts/edit.blade.php on line 100