@extends('layouts.admin') @section('page-title') {{ __('Landing Page') }} @endsection @section('breadcrumb') @endsection @php $settings = \Modules\LandingPage\Entities\LandingPageSetting::settings(); $logo=\App\Models\Utility::get_file('uploads/landing_page_image'); @endphp @push('script-page') @endpush @section('breadcrumb') @endsection @section('content')
@include('landingpage::layouts.tab')
{{-- Start for all settings tab --}} {{Form::model(null, array('route' => array('join_us.store'), 'method' => 'POST', 'class'=>'needs-validation', 'novalidate')) }}
{{ __('Join User') }}
{{ Form::label('Heading', __('Heading'), ['class' => 'form-label']) }} {{ Form::text('joinus_heading', $settings['joinus_heading'], ['class' => 'form-control', 'placeholder' => __('Enter Description'), 'required' => 'required']) }} @error('mail_port') {{ $message }} @enderror
{{ Form::label('Description', __('Description'), ['class' => 'form-label']) }} {{ Form::text('joinus_description', $settings['joinus_description'], ['class' => 'form-control', 'placeholder' => __('Enter Description')]) }} @error('mail_port') {{ $message }} @enderror
{{ Form::close() }}
{{ __('Join Us User') }}
@if(!empty($join_us)) @if (is_array($join_us) || is_object($join_us)) @foreach ($join_us as $key => $value) @endforeach @endif @endif
{{__('Email')}} {{__('Action')}}
{{ $value->email }}
{!! Form::open(['method' => 'DELETE', 'route' => ['join_us.destroy', $value->id],'id'=>'delete-form-'.$value->id]) !!} {!! Form::close() !!}
{{-- End for all settings tab --}}
@endsection