@include('Admin.layouts.app') @include('Admin.layouts.sidebar') @section('title', 'Product')

Add Product

Add Product
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{$error}}
  • @endforeach
@endif @if(Session::has('error'))
Product image is required!
@endif
@csrf


Areas
@foreach($areas as $key => $area) @endforeach
Area Name Price Product ID Variant ID Service Price Repzo Price Status

{{ $area->name }}

id]['status'] ?? '1') == '1' ? 'checked' : '' }}>
id]['status'] ?? '1') == '0' ? 'checked' : '' }}>
@if(Session::has('success')) @endif @include('Admin.layouts.footer') @include('Admin.layouts.modal')