@extends('layouts.admin.app') @section('content')
@include('layouts.errors-and-messages')
{{ csrf_field() }}
has('combination')) class="active" @endif>
Info
has('combination')) class="active" @endif>
Combinations
{{ ucfirst($product->name) }}
SKU
*
Name
*
Description
{!! $product->description !!}
Cover
@foreach($images as $image)
src") }}" alt="" class="img-responsive img-thumbnail">
Remove?
@endforeach
Images
You can use ctr (cmd) to select multiple images
Quantity
*
@if($productAttributes->isEmpty())
@else
@endif @if(!$productAttributes->isEmpty())
Note: Quantity is disabled. Total quantity is calculated by the sum of all the combinations.
@endif
Price
@if($productAttributes->isEmpty())
{{ config('cart.currency') }}
@else
{{ config('cart.currency') }}
@endif @if(!$productAttributes->isEmpty())
Note: Price is disabled. Price is derived based on the combination.
@endif
Sale Price
{{ config('cart.currency') }}
@if(!$brands->isEmpty())
Brand
@foreach($brands as $brand)
id == $product->brand_id) selected="selected" @endif value="{{ $brand->id }}">{{ $brand->name }}
@endforeach
@endif
@include('admin.shared.status-select', ['status' => $product->status])
@include('admin.shared.attribute-select', [compact('default_weight')])
Categories
@include('admin.shared.categories', ['categories' => $categories, 'ids' => $product])
@include('admin.products.create-attributes', compact('attributes'))
@include('admin.products.attributes', compact('productAttributes'))
@endsection @section('css') @endsection @section('js') @endsection