@include('admin.Backend.Layout.common-head')
@include('admin.Backend.Layout.header') @include('admin.Backend.Layout.sidebar')
Manage Products
Home
Manage Products
Products Management
@method('PUT') @csrf
@php // Assuming you have the necessary model and connection set up $tbl_category = \App\Models\tbl_category::select('product_category_title')->get(); @endphp
Product Category
@isset($tbl_category) @foreach ($tbl_category as $category)
{{ $category->product_category_title }}
@endforeach @endisset
@error('banner')
{{ $message }}
@enderror
Product Title
@error('product_title')
{{ $message }}
@enderror
Page Url
@error('pg_url')
{{ $message }}
@enderror
Page Meta Title
@error('pg_meta_title')
{{ $message }}
@enderror
Page Meta Keyword
@error('pg_meta_keyword')
{{ $message }}
@enderror
Page Meta Description
{{ $tbl_product->pg_meta_desc }}
@error('pg_meta_desc')
{{ $message }}
@enderror
Short Description
{{ $tbl_product->sort_description }}
@error('sort_description')
{{ $message }}
@enderror
Description
{{ $tbl_product->description }}
@error('description')
{{ $message }}
@enderror
Image
Choose file
Upload
@if ($tbl_product->image)
Current Image:
@endif
Ist Image
Choose file
Upload
@if ($tbl_product->image_one)
Current Image:
@endif
Second Image
Choose file
Upload
@if ($tbl_product->image_two)
Current Image:
@endif
Third Image
Choose file
Upload
@if ($tbl_product->image_three)
Current Image:
@endif
Fourth Image
Choose file
Upload
@if ($tbl_product->image_four)
Current Image:
@endif
@include('admin.Backend.Layout.footer')
@include('admin.Backend.Layout.common-end')