@extends('admin.layouts.main') @section('main-admin-container')
Create Product
Home
{{--
Tables
--}}
Product
Create Product
@csrf
Product Name
@error('product_name')
{{ $message }}
@enderror
Category
Select Category_id
@foreach ($category as $item)
{{ $item->title }}
@endforeach
@error('category_id')
{{ $message }}
@enderror
Brand
Select Brand
@foreach ($brand as $item)
{{ $item->title }}
@endforeach
@error('brand_id')
{{ $message }}
@enderror
Price
@error('price')
{{ $message }}
@enderror
Upload Images
@error('thumbnail')
{{ $message }}
@enderror
Upload Avatar
@error('avatar')
{{ $message }}
@enderror
Video URL
@error('video_url')
{{ $message }}
@enderror
Short Description
@error('short_description')
{{ $message }}
@enderror
{{--
Features
@error('features')
{{ $message }}
@enderror
--}}
Description
@error('description')
{{ $message }}
@enderror
Submit
Reset
@endsection