@extends('admin.layout.app') @section('content')
{{-- Card --}}

Create Shop By Video

{{-- The structure below matches the videos table as used in the controller (see VideoShopController). Table columns: videolink (string), product_name (string), sp (numeric), mrp (numeric), status (0/1) --}}
@csrf {{-- Video URL (videolink) --}}
@error('videolink') {{ $message }} @enderror
{{-- Linked Product (optional) --}}
@error('product_id') {{ $message }} @enderror
{{-- Product Name --}}
@error('product_name') {{ $message }} @enderror
{{-- Selling Price (sp) --}}
@error('sp') {{ $message }} @enderror
{{-- MRP --}}
@error('mrp') {{ $message }} @enderror
{{-- Stock --}}
@error('stock') {{ $message }} @enderror
{{-- Status --}}
@error('status') {{ $message }} @enderror
{{-- Submit --}}
{{-- /Card --}}
@endsection