⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
work
/
modules
/
Boat
/
Views
/
admin
/
attribute
/
Edit File: form.blade.php
<div class="form-group"> <label>{{__("Name")}}</label> <input type="text" value="{{$translation->name}}" placeholder="{{__("Attribute name")}}" name="name" class="form-control"> </div> @if(is_default_lang()) <div class="form-group"> <label>{{__("Position Order")}}</label> <input type="number" min="0" value="{{$row->position}}" placeholder="{{__("Ex: 1")}}" name="position" class="form-control"> <small> {{ __("The position will be used to order in the Filter page search. The greater number is priority") }} </small> </div> <div class="form-group"> <label>{{__("Display Type in detail service")}}</label> <select name="display_type" class="form-control"> <option @if($row->display_type == "icon_left") selected @endif value="icon_left">{{__("Display Left Icon")}}</option> <option @if($row->display_type == "icon_center") selected @endif value="icon_center">{{__("Display Center Icon")}}</option> </select> </div> <div class="form-group"> <label>{{__('Hide in detail service')}}</label> <br> <label> <input type="checkbox" name="hide_in_single" @if($row->hide_in_single) checked @endif value="1"> {{__("Enable hide")}} </label> </div> <div class="form-group"> <label>{{__('Hide in filter search')}}</label> <br> <label> <input type="checkbox" name="hide_in_filter_search" @if($row->hide_in_filter_search) checked @endif value="1"> {{__("Enable hide")}} </label> </div> @endif
Simpan