PATH:
home
/
lab2454c
/
sothebry.softkinesis.com
/
backups
/
core
/
resources
/
views
/
admin
/
setting
@extends('admin.layouts.app') @section('panel') <div class="row mb-none-30"> <div class="col-lg-12"> <div class="card"> <form action="" method="post"> @csrf <div class="card-body"> <div class="row"> <div class="col-md-6"> <div class="form-group"> <label>@lang('Policy Link')</label> <input type="text" name="link" class="form-control" value="{{ @$cookie->data_values->link }}" placeholder="@lang('Policy Link')"> </div> </div> <div class="col-md-6"> <div class="form-group"> <label>@lang('Status')</label> <input type="checkbox" data-width="100%" data-onstyle="-success" data-offstyle="-danger" data-toggle="toggle" data-on="@lang('Enable')" data-off="@lang('Disabled')" @if(@$cookie->data_values->status) checked @endif name="status"> </div> </div> </div> <div class="form-group"> <label>@lang('Description')</label> <textarea class="form-control nicEdit" rows="10" name="description" placeholder="@lang('Description')">@php echo @$cookie->data_values->description @endphp</textarea> </div> </div> <div class="card-footer"> <button type="submit" class="btn btn--primary btn-block">@lang('Submit')</button> </div> </form> </div> </div> </div> @endsection
[-] logo_icon.blade.php
[edit]
[+]
..
[-] general_setting.blade.php
[edit]
[-] custom_css.blade.php
[edit]
[-] cookie.blade.php
[edit]