PATH:
home
/
lab2454c
/
tripvare.com
/
backup
/
resources
/
views
/
admin
/
dashboard
/
checklist_content
<div class="row mt-4"> <div class="col-xl-12 col-lg-12 col-md-12"> <div class="form-group form__group"> <label class="control-label">{{ __('Checklist Title')}}<span class="text-danger">*</span></label> <input type="text" name='checklist_title' value="{{old('checklist_title', isset($checklistContent) ? $checklistContent->checklist_title:'')}}" class="form-control form__control" placeholder="{{ __('Enter Checklist Title')}}" required /> </div> @error('checklist_title') <p class="alert alert-danger custom-alert" role="alert"> <strong>{{ $message }}</strong> </p> @enderror </div> <div class="col-xl-12 col-lg-12 col-md-12"> <div class="form-group form__group"> <label class="control-label">{{ __('Checklist Content')}}<span class="text-danger">*</span></label> <textarea name="checklist_content" rows="5" class="form-control form__control ckeditor" placeholder="{{ __('Enter Checklist Content')}}" required>{{old('checklist_content', isset($checklistContent) ? $checklistContent->checklist_content:'')}}</textarea> </div> @error('checklist_content') <p class="alert alert-danger custom-alert" role="alert"> <strong>{{ $message }}</strong> </p> @enderror </div> <div class="col-xl-12 col-lg-12 col-md-12 mt-4"> <div class="form-group form__group"> <label class="control-label">{{ __('Vaccination Review Title')}}<span class="text-danger">*</span></label> <input type="text" name='vacination_review_title' value="{{old('vacination_review_title', isset($checklistContent) ? $checklistContent->vacination_review_title:'')}}" class="form-control form__control" placeholder="{{ __('Enter Vaccination Review Title')}}" required /> </div> @error('vacination_review_title') <p class="alert alert-danger custom-alert" role="alert"> <strong>{{ $message }}</strong> </p> @enderror </div> <div class="col-xl-12 col-lg-12 col-md-12"> <div class="form-group form__group"> <label class="control-label">{{ __('Vaccination Review Content')}}<span class="text-danger">*</span></label> <textarea name="vacination_review_content" rows="5" class="form-control form__control ckeditor" placeholder="{{ __('Enter Vaccination Review Content')}}" required>{{old('vacination_review_content', isset($checklistContent) ? $checklistContent->vacination_review_content:'')}}</textarea> </div> @error('vacination_review_content') <p class="alert alert-danger custom-alert" role="alert"> <strong>{{ $message }}</strong> </p> @enderror </div> <div class="col-xl-12 col-lg-12 col-md-12 mt-4"> <div class="form-group form__group"> <label class="control-label">{{ __('Test Review Title')}}<span class="text-danger">*</span></label> <input type="text" name='test_review_title' value="{{old('test_review_title', isset($checklistContent) ? $checklistContent->test_review_title:'')}}" class="form-control form__control" placeholder="{{ __('Enter Test Review Title')}}" required /> </div> @error('test_review_title') <p class="alert alert-danger custom-alert" role="alert"> <strong>{{ $message }}</strong> </p> @enderror </div> <div class="col-xl-12 col-lg-12 col-md-12"> <div class="form-group form__group"> <label class="control-label">{{ __('Test Review Content')}}<span class="text-danger">*</span></label> <textarea name="test_review_content" rows="5" class="form-control form__control ckeditor" placeholder="{{ __('Enter Test Review Content')}}" required>{{old('test_review_content', isset($checklistContent) ? $checklistContent->test_review_content:'')}}</textarea> </div> @error('test_review_content') <p class="alert alert-danger custom-alert" role="alert"> <strong>{{ $message }}</strong> </p> @enderror </div> <div class="col-xl-12 col-lg-12 col-md-12 mt-4"> <div class="form-group form__group"> <label class="control-label">{{ __('Travel Authorization Title')}}<span class="text-danger">*</span></label> <input type="text" name='travel_authorization_title' value="{{old('travel_authorization_title', isset($checklistContent) ? $checklistContent->travel_authorization_title:'')}}" class="form-control form__control" placeholder="{{ __('Enter Travel Authorization Title')}}" required /> </div> @error('travel_authorization_title') <p class="alert alert-danger custom-alert" role="alert"> <strong>{{ $message }}</strong> </p> @enderror </div> <div class="col-xl-12 col-lg-12 col-md-12"> <div class="form-group form__group"> <label class="control-label">{{ __('Travel Authorization Content')}}<span class="text-danger">*</span></label> <textarea name="travel_authorization_content" rows="5" class="form-control form__control ckeditor" placeholder="{{ __('Enter Travel Authorization Content')}}" required>{{old('travel_authorization_content', isset($checklistContent) ? $checklistContent->travel_authorization_content:'')}}</textarea> </div> @error('travel_authorization_content') <p class="alert alert-danger custom-alert" role="alert"> <strong>{{ $message }}</strong> </p> @enderror </div> </div> <button class="btn btn-primary d-inline" type="submit">{{isset($checklistContent) ? 'Update' : 'Create'}}</button> <a class="btn btn-danger d-inline" href='{{ route("admin.checklistContent.index")}}'>Cancel</a> @push('ckeditorjs') <script src="//cdn.ckeditor.com/4.16.0/standard/ckeditor.js"></script> @endpush
[-] form.blade.php
[edit]
[-] edit.blade.php
[edit]
[+]
..
[-] list.blade.php
[edit]