mirror of
https://github.com/LinkStackOrg/LinkStack.git
synced 2025-02-03 12:37:39 +01:00
update studio edit page blade
This commit is contained in:
parent
c5bff25413
commit
3c2f555df5
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
|
|
||||||
<h2 class="mb-4"><i class="bi bi-file-earmark-break"> Littlelink Page</i></h2>
|
<h2 class="mb-4"><i class="bi bi-file-earmark-break"> Page</i></h2>
|
||||||
|
|
||||||
<form action="{{ route('editPage') }}" enctype="multipart/form-data" method="post">
|
<form action="{{ route('editPage') }}" enctype="multipart/form-data" method="post">
|
||||||
@csrf
|
@csrf
|
||||||
@ -11,12 +11,32 @@
|
|||||||
<input type="file" class="form-control-file" name="image">
|
<input type="file" class="form-control-file" name="image">
|
||||||
</div>
|
</div>
|
||||||
@foreach($pages as $page)
|
@foreach($pages as $page)
|
||||||
|
|
||||||
<div class="form-group col-lg-8">
|
<div class="form-group col-lg-8">
|
||||||
<label>Littlelink name</label>
|
@if(file_exists(public_path("img/$page->littlelink_name" . ".png" )))
|
||||||
<input type="text" class="form-control" name="pageName" value="{{ $page->littlelink_name ?? '' }}">
|
<img src="{{ asset("img/$page->littlelink_name" . ".png") }}" srcset="{{ asset("img/$page->littlelink_name" . "@2x.png 2x") }}" width="100px" height="100px">
|
||||||
|
@else
|
||||||
|
<img src="{{ asset('littlelink/images/avatar.png') }}" srcset="{{ asset('littlelink/images/avatar@2x.png 2x') }}">
|
||||||
|
@endif
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!--<div class="form-group col-lg-8">
|
||||||
|
<label>Path name</label>
|
||||||
|
@<input type="text" class="form-control" name="pageName" value="{{ $page->littlelink_name ?? '' }}">
|
||||||
|
</div>-->
|
||||||
|
|
||||||
<div class="form-group col-lg-8">
|
<div class="form-group col-lg-8">
|
||||||
<label>Littlelink description</label>
|
<label>Page URL</label>
|
||||||
|
<div class="input-group">
|
||||||
|
<div class="input-group-prepend">
|
||||||
|
<div class="input-group-text">{{ config('app.url') }}/@</div>
|
||||||
|
</div>
|
||||||
|
<input type="text" class="form-control" name="pageName" value="{{ $page->littlelink_name ?? '' }}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group col-lg-8">
|
||||||
|
<label>Page Description</label>
|
||||||
<textarea class="form-control" name="pageDescription" rows="3">{{ $page->littlelink_description ?? '' }}</textarea>
|
<textarea class="form-control" name="pageDescription" rows="3">{{ $page->littlelink_description ?? '' }}</textarea>
|
||||||
</div>
|
</div>
|
||||||
@endforeach
|
@endforeach
|
||||||
|
Loading…
x
Reference in New Issue
Block a user