@extends('layouts.admin') @section('page-title') {{ __('Landing Page') }} @endsection {{-- @section('breadcrumb') @endsection --}} @php $logo = \App\Models\Utility::get_file('uploads/logo'); $settings = \Modules\LandingPage\Entities\LandingPageSetting::settings(); @endphp @push('script-page') @endpush @section('links') @endsection @section('content')
@include('landingpage::layouts.tab')
{{-- Start for all settings tab --}} {{ Form::model(null, ['route' => ['landingpage.store'], 'method' => 'POST', 'class' => 'needs-validation', 'novalidate']) }} @csrf
{{ __('Top Bar') }}
{{ Form::label('content', __('Message'), ['class' => 'col-form-label text-dark']) }} {{ Form::textarea('topbar_notification_msg', $settings['topbar_notification_msg'], ['class' => 'summernote form-control', 'required' => 'required', 'id' => 'summernote']) }}
{{ Form::close() }} {{-- End for all settings tab --}}
@endsection