@extends('layouts.admin') @section('page-title') {{ __('Landing Page') }} @endsection @section('breadcrumb') @endsection @php $lang = \App\Models\Utility::getValByName('default_language'); // $logo=asset(Storage::url('uploads/logo/')); $logo = \App\Models\Utility::get_file('uploads/logo'); $logo_light = \App\Models\Utility::getValByName('logo_light'); $logo_dark = \App\Models\Utility::getValByName('logo_dark'); $company_favicon = \App\Models\Utility::getValByName('company_favicon'); $setting = \App\Models\Utility::colorset(); // $mode_setting = \App\Models\Utility::mode_layout(); $color = !empty($setting['color']) ? $setting['color'] : 'theme-3'; $SITE_RTL = isset($setting['SITE_RTL']) ? $setting['SITE_RTL'] : 'off'; $meta_image = \App\Models\Utility::get_file('uploads/meta/'); @endphp @section('links') @endsection @section('content')
@include('landingpage::layouts.tab')
{{-- Start for all settings tab --}}
{{ __('Plan Section') }}
{{ Form::open(['route' => 'pricing_plan.store', 'method' => 'post', 'enctype' => 'multipart/form-data', 'class' => 'needs-validation', 'novalidate']) }}
{{ Form::label('Title', __('Title'), ['class' => 'form-label']) }} {{ Form::text('plan_title', $settings['plan_title'], ['class' => 'form-control ', 'placeholder' => __('Enter Title')]) }} @error('mail_host') {{ $message }} @enderror
{{ Form::label('Heading', __('Heading'), ['class' => 'form-label']) }} {{ Form::text('plan_heading', $settings['plan_heading'], ['class' => 'form-control ', 'placeholder' => __('Enter Heading')]) }} @error('mail_host') {{ $message }} @enderror
{{ Form::label('Description', __('Description'), ['class' => 'form-label']) }} {{ Form::text('plan_description', $settings['plan_description'], ['class' => 'form-control', 'placeholder' => __('Enter Description')]) }} @error('mail_port') {{ $message }} @enderror
{{ Form::close() }}
{{-- End for all settings tab --}}
@endsection