PATH:
home
/
lab2454c
/
tripvare.com
/
resources
/
views
/
admin
/
dashboard
@extends('layouts.admin.form') @section('form') <h3>Manage Reward</h3> @include('validation.message') @include('validation.flashmessage') <form role="form" action="{{ route('admin.manage-reward')}}" method="post" enctype="multipart/form-data"> @csrf <div class="row"> <div class="col-xl-12 col-lg-12 col-md-12"> <div class="form-group form__group"> <label class="control-label">Section 1 Image</label> @if(!empty($reward->section_1_img)) <img src="{{$reward->section_1_img}}" width="100" /> @endif <input type="file" name='section_1_img' class="form-control form__control"/> </div> </div> <div class="col-xl-12 col-lg-12 col-md-12"> <div class="form-group form__group"> <label class="control-label">Section 1 Content</label> <textarea name="section_1_content" class="form-control form__control ckeditor">@if(!empty($reward->section_1_content )){{ $reward->section_1_content }}@endif</textarea> </div> </div> <div class="col-xl-12 col-lg-12 col-md-12"> <div class="form-group form__group"> <label class="control-label">Section 2 1st Image</label> @if(!empty($reward->section_1_img)) <img src="{{$reward->section_2_sub_1_img}}" width="100" /> @endif <input type="file" name='section_2_sub_1_img' class="form-control form__control"/> </div> </div> <div class="col-xl-12 col-lg-12 col-md-12"> <div class="form-group form__group"> <label class="control-label">Section 2 1st Content</label> <textarea name="section_2_sub_1_content" class="form-control form__control ckeditor">@if(!empty($reward->section_2_sub_1_content )){{ $reward->section_2_sub_1_content }}@endif</textarea> </div> </div> <div class="col-xl-12 col-lg-12 col-md-12"> <div class="form-group form__group"> <label class="control-label">Section 2 2nd Image</label> @if(!empty($reward->section_2_sub_2_img)) <img src="{{$reward->section_2_sub_2_img}}" width="100" /> @endif <input type="file" name='section_2_sub_2_img' class="form-control form__control"/> </div> </div> <div class="col-xl-12 col-lg-12 col-md-12"> <div class="form-group form__group"> <label class="control-label">Section 2 2nd Content</label> <textarea name="section_2_sub_2_content" class="form-control form__control ckeditor">@if(!empty($reward->section_2_sub_2_content )){{ $reward->section_2_sub_2_content }}@endif</textarea> </div> </div> <div class="col-xl-12 col-lg-12 col-md-12"> <div class="form-group form__group"> <label class="control-label">Section 2 3rd Image</label> @if(!empty($reward->section_2_sub_3_img)) <img src="{{$reward->section_2_sub_3_img}}" width="100" /> @endif <input type="file" name='section_2_sub_3_img' class="form-control form__control"/> </div> </div> <div class="col-xl-12 col-lg-12 col-md-12"> <div class="form-group form__group"> <label class="control-label">Section 2 3rd Content</label> <textarea name="section_2_sub_3_content" class="form-control form__control ckeditor">@if(!empty($reward->section_2_sub_3_content )){{ $reward->section_2_sub_3_content }}@endif</textarea> </div> </div> <div class="col-xl-12 col-lg-12 col-md-12"> <div class="form-group form__group"> <label class="control-label">Section 2 4th Image</label> @if(!empty($reward->section_2_sub_4_img)) <img src="{{$reward->section_2_sub_4_img}}" width="100" /> @endif <input type="file" name='section_2_sub_4_img' class="form-control form__control"/> </div> </div> <div class="col-xl-12 col-lg-12 col-md-12"> <div class="form-group form__group"> <label class="control-label">Section 2 4th Content</label> <textarea name="section_2_sub_4_content" class="form-control form__control ckeditor">@if(!empty($reward->section_2_sub_4_content )){{ $reward->section_2_sub_4_content }}@endif</textarea> </div> </div> <div class="col-xl-12 col-lg-12 col-md-12"> <div class="form-group form__group"> <label class="control-label">Section 2 5th Image</label> @if(!empty($reward->section_2_sub_5_img)) <img src="{{$reward->section_2_sub_5_img}}" width="100" /> @endif <input type="file" name='section_2_sub_5_img' class="form-control form__control"/> </div> </div> <div class="col-xl-12 col-lg-12 col-md-12"> <div class="form-group form__group"> <label class="control-label">Section 2 5th Content</label> <textarea name="section_2_sub_5_content" class="form-control form__control ckeditor">@if(!empty($reward->section_2_sub_5_content )){{ $reward->section_2_sub_5_content }}@endif</textarea> </div> </div> <div class="col-xl-12 col-lg-12 col-md-12"> <div class="form-group form__group"> <label class="control-label">Section 2 6th Image</label> @if(!empty($reward->section_2_sub_6_img)) <img src="{{$reward->section_2_sub_6_img}}" width="100" /> @endif <input type="file" name='section_2_sub_6_img' class="form-control form__control"/> </div> </div> <div class="col-xl-12 col-lg-12 col-md-12"> <div class="form-group form__group"> <label class="control-label">Section 2 6th Content</label> <textarea name="section_2_sub_6_content" class="form-control form__control ckeditor">@if(!empty($reward->section_2_sub_6_content )){{ $reward->section_2_sub_6_content }}@endif</textarea> </div> </div> <div class="col-xl-12 col-lg-12 col-md-12"> <div class="form-group form__group"> <label class="control-label">Section 3 Content</label> <textarea name="section_3_content" class="form-control form__control ckeditor">@if(!empty($reward->section_3_content )){{ $reward->section_3_content }}@endif</textarea> </div> </div> <div class="col-xl-12 col-lg-12 col-md-12"> <div class="form-group form__group"> <label class="control-label">Section 4 1st Content</label> <textarea name="section_4_sub_1_content" class="form-control form__control ckeditor">@if(!empty($reward->section_4_sub_1_content )){{ $reward->section_4_sub_1_content }}@endif</textarea> </div> </div> <div class="col-xl-12 col-lg-12 col-md-12"> <div class="form-group form__group"> <label class="control-label">Section 4 2nd Content</label> <textarea name="section_4_sub_2_content" class="form-control form__control ckeditor">@if(!empty($reward->section_4_sub_2_content )){{ $reward->section_4_sub_2_content }}@endif</textarea> </div> </div> <div class="col-xl-12 col-lg-12 col-md-12"> <div class="form-group form__group"> <label class="control-label">Section 4 3rd Content</label> <textarea name="section_4_sub_3_content" class="form-control form__control ckeditor">@if(!empty($reward->section_4_sub_3_content )){{ $reward->section_4_sub_3_content }}@endif</textarea> </div> </div> <div class="col-xl-12 col-lg-12 col-md-12"> <div class="form-group form__group"> <label class="control-label">Section 5 1st Content</label> <textarea name="section_5_sub_1_content" class="form-control form__control ckeditor">@if(!empty($reward->section_5_sub_1_content )){{ $reward->section_5_sub_1_content }}@endif</textarea> </div> </div> <div class="col-xl-12 col-lg-12 col-md-12"> <div class="form-group form__group"> <label class="control-label">Section 5 2nd Content</label> <textarea name="section_5_sub_2_content" class="form-control form__control ckeditor">@if(!empty($reward->section_5_sub_2_content )){{ $reward->section_5_sub_2_content }}@endif</textarea> </div> </div> <div class="col-xl-12 col-lg-12 col-md-12"> <div class="form-group form__group"> <label class="control-label">Section 5 3rd Content</label> <textarea name="section_5_sub_3_content" class="form-control form__control ckeditor">@if(!empty($reward->section_5_sub_3_content )){{ $reward->section_5_sub_3_content }}@endif</textarea> </div> </div> <div class="col-xl-12 col-lg-12 col-md-12"> <div class="form-group form__group"> <label class="control-label">Section 5 4th Content</label> <textarea name="section_5_sub_4_content" class="form-control form__control ckeditor">@if(!empty($reward->section_5_sub_4_content )){{ $reward->section_5_sub_4_content }}@endif</textarea> </div> </div> </div> <button class="submit__btn" type="submit">Update</button> </form> @endsection @push('ckeditorjs') <script src="//cdn.ckeditor.com/4.16.0/standard/ckeditor.js"></script> @endpush
[-] manage_reward.blade.php
[edit]
[-] change_password.blade.php
[edit]
[+]
..
[-] manage_settings.blade.php
[edit]
[+]
manage_navigation
[-] contacts.blade.php
[edit]
[+]
legal_consent
[+]
manage_corporate_users
[+]
dynamic_pages
[+]
banner_images
[+]
manage_users
[+]
checklist_content
[+]
vaccination_review_content
[+]
manage_gallery
[+]
manage_help
[+]
social_links
[+]
manage_pages
[+]
manage_copyright
[-] manage_profile.blade.php
[edit]
[-] dashboard_landing.blade.php
[edit]