@extends('layouts.admin') @section('title', 'Add Product') @section('page_title', 'Add Product') @section('page_css') @endsection @section('content') Product Name * @error('name') {{ $message }} @enderror Category Select Category @foreach($categories as $cat) id ? 'selected' : '' }}>{{ $cat->name }} @endforeach @error('category_id') {{ $message }} @enderror Country Select Country @foreach($countries as $country) id ? 'selected' : '' }}>{{ $country->name }} @endforeach @error('country_id') {{ $message }} @enderror Destination Select Country first @error('destination_id') {{ $message }} @enderror Brand Select Destination first @error('brand_id') {{ $message }} @enderror Product URL Price ({{ config('admin.currency_symbol', '$') }}) @error('price') {{ $message }} @enderror Discount % Description {{ old('description') }} Top Product Popular Status (Active) Save Product Cancel @endsection @section('page_js') @endsection