@extends('admin.layouts.app') @section('page-title') Product @isset($product) Update @else Add @endisset @endsection @section('css') @endsection @section('content')
@csrf @if(isset($product)) @method('PUT') @endif

Add Product image(s)

@php if(isset($images) && count($images) > 0): @endphp

Product image(s)

@foreach($images as $image) @endforeach
@php endif @endphp

Product Information

@foreach (config('translatable.locales') as $locale)
@if ($loop->last) @else
@endif
@endforeach

Product Attributes

is_active : true) ? 'checked' : '' }}>
* Required fields
@endsection @section('scripts') @endsection