@extends('layouts.admin') @section('title', 'Edit Product') @section('page_title', 'Edit Product') @section('page_css') @endsection @section('content') Product Name * @error('name') {{ $message }} @enderror Category Select Category @foreach($categories as $cat) category_id) == $cat->id ? 'selected' : '' }}>{{ $cat->name }} @endforeach Country Select Country @foreach($countries as $country) country_id) == $country->id ? 'selected' : '' }}>{{ $country->name }} @endforeach Destination @if($product->destination) {{ $product->destination->name }} @else Select Country first @endif Brand @if($product->brand) {{ $product->brand->name }} @else Select Destination first @endif Product URL Price ({{ config('admin.currency_symbol', '$') }}) Discount % Description {{ old('description', $product->description) }} Top Product is_top) ? 'checked' : '' }}> Popular is_popular) ? 'checked' : '' }}> Status (Active) status) === 'active' ? 'checked' : '' }}> Update Product Cancel @endsection @section('page_js') @endsection