PATH:
home
/
lab2454c
/
westernclear.net
/
resources
/
views
/
admin
/
homepageManager
/
goldstarSection
<div class="form-group"> <label for="LeftImage">Left Image<span class="text-danger"> *</span></label> <div class="row"> <div class="col-md-6"> <input type="file" name="left_image" accept="image/*" id="LeftImage" onchange="showBannerImage(this)" class="form-control @error('left_image') is-invalid @enderror" /> </div> <div class="col-md-6"> <img src="{{ isset($goldstarSection->left_image) ? config("app.url").Storage::url($goldstarSection->left_image) : asset('adminAssets/images/default-page-banner.png') }}" id="BannerImg" class="frame frame-1 mt-0" title="Banner Image" alt="banner_image"> </div> </div> </div> <div class="form-group"> <label for="ShortDesc">Short Description<span class="text-danger"> *</span></label> <textarea class="form-control nicEdit @error('content') is-invalid @enderror" name="content" placeholder="Enter Short Desc" id="ShortDesc" required rows="5">{{old('content', isset($goldstarSection) ? $goldstarSection->content:'')}}</textarea> </div> <button type="submit" class="btn btn-primary mr-2">{{isset($goldstarSection) ? 'Update' : 'Create'}}</button> <a class="btn btn-dark" href="{{ route('goldstarSection.index') }}">Cancel</a> @include('admin.common.scripts')
[-] form.blade.php
[edit]
[-] edit.blade.php
[edit]
[+]
..
[-] list.blade.php
[edit]