Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jovitamaharani committed Nov 19, 2024
2 parents 1984075 + e30180f commit 1d64291
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion app/Http/Controllers/Student/Profile/ProfileController.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@

class ProfileController extends Controller
{
public function index() {
public function index()
{
return view('user.pages.dashboard.student.profile');
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ class="fas fa-camera"></i></button>
<div class="row">
<div class="col-md-6">
<div class="form-grp">
<label for="firstname">Nama</label>
<label for="firstname">Nama <span
class="text-danger">*</span></label>
<input id="name" type="text" name="name"
value="{{ old('name') }}">
<div class="invalid-feedback"></div>
Expand All @@ -88,15 +89,17 @@ class="fas fa-camera"></i></button>
</div>
<div class="col-md-6">
<div class="form-grp">
<label for="username">Email</label>
<label for="username">Email <span
class="text-danger">*</span></label>
<input id="email" name="email" type="text"
value="{{ old('email') }}">
<div class="invalid-feedback"></div>
</div>
</div>
<div class="col-md-6">
<div class="form-grp">
<label for="phonenumber">Phone Number</label>
<label for="phonenumber">Phone Number <span
class="text-danger">*</span></label>
<input id="phone_number" name="phone_number"
type="number" value="{{ old('phone_number') }}">
<div class="invalid-feedback"></div>
Expand Down

0 comments on commit 1d64291

Please sign in to comment.