@extends('pages.admin.layout') @section('content')
{{ method_field('PUT') }} @csrf

Edit Product - {{ $product->name }}

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Feature information
featured ? ' checked' : '' }}/>
active ? ' checked' : '' }}/>
Available on which site
min_site ? ' checked' : '' }}/>
edible_site ? ' checked' : '' }}/>

Image

@if($product->getFirstMediaUrl('images','thumb')) @foreach($product->getMedia('images') as $image)
@endforeach @endif

Product Options

@include('pages.admin.products._product_options_table')
@if(env('IS_MIN_ONLINE') == 0)

EcoVillage Information

Availablity on ePos (if checked - it will not be on ePos)
non_eco_village ? ' checked' : '' }}/>
For Products that are Weighed
@endif
@include('pages.admin.products._product_options_modal') @endsection @section('scripts') @append