-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added admin route for testing file upload
- Loading branch information
1 parent
78764d6
commit 1e2b80f
Showing
3 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
@extends('backoffice.layout') | ||
@section('content-header') | ||
<h1>All Crowd-sourcing Projects</h1> | ||
@endsection | ||
|
||
@section('content') | ||
<div class="card card-info"> | ||
<div class="card-header"> | ||
<h3 class="card-title">Upload Image</h3> | ||
</div> | ||
<div class="card-body"> | ||
<form action="{{ route('admin.image.upload') }}" method="POST" enctype="multipart/form-data"> | ||
@csrf | ||
<div class="form-group py-5"> | ||
<label for="image">Choose an image to upload:</label> | ||
<input type="file" class="form-control" id="image" name="image" accept="image/*" required> | ||
</div> | ||
<button type="submit" class="btn btn-primary btn-slim">Upload</button> | ||
</form> | ||
</div> | ||
</div> | ||
@endsection |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters