����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 18.118.160.215 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/bofirmacademy.com/resources/views/admin/application_settings/ |
Upload File : |
@extends('layouts.admin') @section('content') <!-- Page content area start --> <div class="page-content"> <div class="container-fluid"> <div class="row"> <div class="col-md-12"> <div class="breadcrumb__content"> <div class="breadcrumb__content__left"> <div class="breadcrumb__title"> <h2>{{ __('Application Setting') }}</h2> </div> </div> <div class="breadcrumb__content__right"> <nav aria-label="breadcrumb"> <ul class="breadcrumb"> <li class="breadcrumb-item"><a href="{{route('admin.dashboard')}}">{{__('Dashboard')}}</a></li> <li class="breadcrumb-item active" aria-current="page">{{ __(@$title) }}</li> </ul> </nav> </div> </div> </div> </div> <div class="row"> <div class="col-lg-3 col-md-4"> @include('admin.application_settings.sidebar') </div> <div class="col-lg-9 col-md-8"> <div class="email-inbox__area bg-style"> <div class="item-top mb-30"><h2>{{ __(@$title) }}</h2></div> <div class="bg-dark-primary-soft-varient p-4 border-1"> <h2>{{ __('Instructions') }}: </h2> <p>{{ __('If private mode is active then student will register without admin approval.') }}</p> </div> <br> <form action="{{route('settings.private_mode.change')}}" method="post" class="form-horizontal"> @csrf <div class="form-group text-black row mb-3"> <label class="col-lg-3">{{ __('Private Mode') }} <span class="text-danger">*</span></label> <div class="col-lg-9"> <div class="col-lg-9"> <select name="private_mode" required class="form-control private_mode"> <option value="0" @if(get_option('private_mode') != 1) selected @endif>{{ __('No') }}</option> <option value="1" @if(get_option('private_mode') == 1) selected @endif>{{ __('Yes') }}</option> </select> @if ($errors->has('private_mode')) <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{ $errors->first('private_mode') }}</span> @endif </div> </div> </div> <div class="mb-20 row text-end"> <div class="col"> <button type="submit" class="btn btn-blue float-right">{{ __('Update') }}</button> </div> </div> </form> </div> </div> </div> </div> </div> <!-- Page content area end --> @endsection