⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.23
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
id
/
public_html
/
resources
/
views
/
admin
/
basic
/
View File Name :
basicinfo.blade.php
@extends('admin.layout') @if(!empty($abe->language) && $abe->language->rtl == 1) @section('styles') <style> form input, form textarea, form select { direction: rtl; } form .note-editor.note-frame .note-editing-area .note-editable { direction: rtl; text-align: right; } </style> @endsection @endif @section('content') <div class="page-header"> <h4 class="page-title">{{ __('Basic Informations') }}</h4> <ul class="breadcrumbs"> <li class="nav-home"> <a href="{{route('admin.dashboard')}}"> <i class="flaticon-home"></i> </a> </li> <li class="separator"> <i class="flaticon-right-arrow"></i> </li> <li class="nav-item"> <a href="#">{{ __('Basic Settings') }}</a> </li> <li class="separator"> <i class="flaticon-right-arrow"></i> </li> <li class="nav-item"> <a href="#">{{ __('Basic Informations') }}</a> </li> </ul> </div> <div class="row"> <div class="col-md-12"> <div class="card"> <form class="" action="{{route('admin.basicinfo.update')}}" method="post"> @csrf <div class="card-header"> <div class="row"> <div class="col-lg-10"> <div class="card-title">{{ __('Update') }} {{ __('Basic Informations') }}</div> </div> </div> </div> <div class="card-body pt-5 pb-5"> <div class="row"> <div class="col-lg-6 offset-lg-3"> @csrf <div class="form-group"> <h3 class="text-warning">{{ __('Information') }}</h3> <hr class="divider"><br> <label>{{ __('Website Title') }} **</label> <input class="form-control" name="website_title" value="{{$abs->website_title}}"> @if ($errors->has('website_title')) <p class="mb-0 text-danger">{{$errors->first('website_title')}}</p> @endif </div> <div class="form-group"> <label>{{ __('Timezone') }} **</label> <select name="timezone" class="form-control select2"> @foreach($timezones as $timezone) <option value="{{$timezone->timezone}}" {{$timezone->timezone == $abe->timezone ? "selected" : "" }}>{{$timezone->timezone}}</option> @endforeach </select> @if ($errors->has('timezone')) <p class="mb-0 text-danger">{{$errors->first('timezone')}}</p> @endif </div> <div class="form-group"> <br> <h3 class="text-warning">{{ __('Website Appearance') }}</h3> <hr class="divider"><br> <label>{{ __('Base Color Code') }} **</label> <input class="jscolor form-control ltr" name="base_color" value="{{$abs->base_color}}"> @if ($errors->has('base_color')) <p class="mb-0 text-danger">{{$errors->first('base_color')}}</p> @endif </div> <div class="row"> <div class="col-12"> <div class="form-group"> <br> <h3 class="text-warning">{{ __('Currency Settings') }}</h3> <hr class="divider"> </div> </div> <div class="col-lg-6"> <div class="form-group"> <label>{{ __('Base Currency Symbol') }} **</label> <input type="text" class="form-control ltr" name="base_currency_symbol" value="{{$abe->base_currency_symbol}}"> @if ($errors->has('base_currency_symbol')) <p class="mb-0 text-danger">{{$errors->first('base_currency_symbol')}}</p> @endif </div> </div> <div class="col-lg-6"> <div class="form-group"> <label>{{ __('Base Currency Symbol Position') }} **</label> <select name="base_currency_symbol_position" class="form-control ltr"> <option value="left" {{$abe->base_currency_symbol_position == 'left' ? 'selected' : ''}}>{{ __('Left') }}</option> <option value="right" {{$abe->base_currency_symbol_position == 'right' ? 'selected' : ''}}>{{ __('Right') }}</option> </select> @if ($errors->has('base_currency_symbol_position')) <p class="mb-0 text-danger">{{$errors->first('base_currency_symbol_position')}}</p> @endif </div> </div> </div> <div class="row"> <div class="col-lg-4"> <div class="form-group"> <label>{{ __('Base Currency Text') }} **</label> <input type="text" class="form-control ltr" name="base_currency_text" value="{{$abe->base_currency_text}}"> @if ($errors->has('base_currency_text')) <p class="mb-0 text-danger">{{$errors->first('base_currency_text')}}</p> @endif </div> </div> <div class="col-lg-4"> <div class="form-group"> <label>{{ __('Base Currency Text Position') }} **</label> <select name="base_currency_text_position" class="form-control ltr"> <option value="left" {{$abe->base_currency_text_position == 'left' ? 'selected' : ''}}>{{ __('Left') }}</option> <option value="right" {{$abe->base_currency_text_position == 'right' ? 'selected' : ''}}>{{ __('Right') }}</option> </select> @if ($errors->has('base_currency_text_position')) <p class="mb-0 text-danger">{{$errors->first('base_currency_text_position')}}</p> @endif </div> </div> <div class="col-lg-4"> <div class="form-group"> <label>{{ __('Base Currency Rate') }} **</label> <div class="input-group mb-2"> <div class="input-group-prepend"> <span class="input-group-text">1 USD =</span> </div> <input type="text" name="base_currency_rate" class="form-control ltr" value="{{$abe->base_currency_rate}}"> <div class="input-group-append"> <span class="input-group-text">{{$abe->base_currency_text}}</span> </div> </div> @if ($errors->has('base_currency_rate')) <p class="mb-0 text-danger">{{$errors->first('base_currency_rate')}}</p> @endif </div> </div> </div> </div> </div> </div> <div class="card-footer"> <div class="form"> <div class="form-group from-show-notify row"> <div class="col-12 text-center"> <button type="submit" id="displayNotif" class="btn btn-success">{{ __('Update') }}</button> </div> </div> </div> </div> </form> </div> </div> </div> @endsection