@extends('layouts.master') @section('title') {{ __('web_settings') }} @endsection @section('content')
@csrf {{-- Colour settings --}}

{{ __('colour_settings') }}


{{-- Primary color --}}
{{__('restore_default')}}
{{-- Secondary color --}}
{{__('restore_default')}}
{{-- Secondary color 1 --}}
{{__('restore_default')}}
{{-- Primary background color --}}
{{__('restore_default')}}
{{-- Text secondary color --}}
{{__('restore_default')}}
{{-- End Colour settings --}} {{-- General settings --}}

{{ __('general_settings') }}


{{ __('about_us') }}


{!! Form::text('about_us_title', $settings['about_us_title'] ?? null, ['required','class' => 'form-control','placeholder' => __('title')]) !!}
{!! Form::text('about_us_heading', $settings['about_us_heading'] ?? null, ['required','class' => 'form-control', 'placeholder' => __('heading')]) !!}
{!! Form::textarea('about_us_description', $settings['about_us_description'] ?? null, ['required','class' => 'form-control','rows' => 5, 'placeholder' => __('description')]) !!}
{!! Form::text('about_us_points', $settings['about_us_points'] ?? null, ['required','class' => 'form-control', 'id' => 'tags', 'placeholder' => __('about_us_points')]) !!}

{{ __('custom_package_section') }}


@if (isset($settings['custom_package_status']) && $settings['custom_package_status'] == 1)
@else
@endif
{!! Form::textarea('custom_package_description', $settings['custom_package_description'] ?? null, ['class' => 'form-control','rows' => 5, 'placeholder' => __('description')]) !!}

{{ __('download_our_app_section') }}


{!! Form::textarea('download_our_app_description', $settings['download_our_app_description'] ?? null, ['required','class' => 'form-control','rows' => 5, 'placeholder' => __('description')]) !!}

{{ __('social_media_links') }}


{{ __('Footer Settings') }}


@endsection @section('script') @endsection