@extends('admin.layouts.index', ['header' => true, 'nav' => true, 'demo' => true]) @section('content')
{{-- Failed --}} @if (Session::has('failed')) @endif {{-- Success --}} @if (Session::has('success')) @endif
{{-- Config Form --}}
@csrf {{-- Card Body --}}
{{-- Theme Colors --}}
@php $themes = [ 'blue' => 'bg-blue', 'indigo' => 'bg-indigo', 'green' => 'bg-green', 'yellow' => 'bg-yellow', 'red' => 'bg-red', 'purple' => 'bg-purple', 'pink' => 'bg-pink', 'gray' => 'bg-muted', ]; @endphp @foreach ($themes as $value => $bgClass)
@endforeach
{{-- Themes Slider on/off in home page --}}
{{-- Banner Image --}}
{{ __('Banner Image') }}
{{ __('Recommended size : 1000 x 667') }}
{{-- Signup/Signin Image --}}
{{ __('Signup/Signin Image') }}
{{ __('Recommended size : 486 x 605') }}
{{-- Custom CSS --}}
{{-- Custom JS --}}
@include('admin.includes.footer')
{{-- Custom JS --}} @section('scripts') @endsection @endsection