@extends('backend.layouts.master') @section('pageTitle') Settings @endsection @section('pageContent')

Institute Settings

@csrf @if(AppHelper::getInstituteCategory() != 'college')

Note: Create academic year if not have any.

@endif

Application Settings

{{ $errors->first('name') }}
{{ $errors->first('short_name') }}
{{ $errors->first('establish') }}
@if($info && isset($info->logo)) @endif {{ $errors->first('logo') }}
@if($info && isset($info->logo_small)) @endif {{ $errors->first('logo_small') }}
@if($info && isset($info->favicon)) @endif {{ $errors->first('favicon') }}
{{ $errors->first('website_link') }}
{{ $errors->first('email') }}
{{ $errors->first('phone_no') }}
{{ $errors->first('address') }}
{!! Form::select('institute_type', [1 => "Boys", 2 => "Girls", 3 => "Boys & Girls"], $institute_type , ['class' => 'form-control select2']) !!} {{ $errors->first('institute_type') }}
{{--
--}} {{--
--}} {{----}} {{--{!! Form::select('language', $languages, $language, ['class' => 'form-control select2', 'required' => 'true']) !!}--}} {{----}} {{--{{ $errors->first('language') }}--}} {{--
--}} {{--
--}} @if(AppHelper::getInstituteCategory() != 'college')
{!! Form::select('academic_year', $academic_years, $academic_year, ['placeholder' => 'Pick a year...','class' => 'form-control select2', 'required' => 'true']) !!} {{ $errors->first('academic_year') }}
@endif
{{ $errors->first('frontend_website') }}
{{ $errors->first('board_name') }}

Institute Working Settings

{!! Form::select('weekends[]', AppHelper::weekDays, $weekends, ['class' => 'form-control select2', 'required' => 'true','multiple' => 'true']) !!} {{ $errors->first('weekends') }}
{!! Form::select('START_DAY_OF_WEEK', AppHelper::weekDays, $START_DAY_OF_WEEK, ['class' => 'form-control select2', 'placeholder' => 'Pick a day', 'required' => 'true']) !!} {{ $errors->first('START_DAY_OF_WEEK') }}
{!! Form::select('END_DAY_OF_WEEK', AppHelper::weekDays, $END_DAY_OF_WEEK, ['class' => 'form-control select2', 'placeholder' => 'Pick a day', 'required' => 'true']) !!} {{ $errors->first('END_DAY_OF_WEEK') }}
{{ $errors->first('morning_start') }}
{{ $errors->first('morning_end') }}
{{ $errors->first('day_start') }}
{{ $errors->first('day_end') }}
{{ $errors->first('evening_start') }}
{{ $errors->first('evening_end') }}

Result Settings

{!! Form::select('result_default_grade_id', $grades, $grade_id , ['class' => 'form-control select2', 'required' => 'true']) !!} {{ $errors->first('result_default_grade_id') }}
@endsection @section('extraScript') @endsection