-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2c95e6e
commit 33cce27
Showing
4 changed files
with
53 additions
and
3 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
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,47 @@ | ||
@extends('layouts.app') | ||
@section('content') | ||
<div class="col-md-11 mx-auto"> | ||
<div class="card"> | ||
<h5 class="card-header">{{$company->name}}</h5> | ||
|
||
<div class="card-body"> | ||
<div class="d-flex align-items-start align-items-sm-center gap-4"> | ||
<img src="../assets/img/avatars/1.png" alt="user-avatar" class="d-block rounded" height="100" | ||
width="100" id="uploadedAvatar" /> | ||
<div class="button-wrapper"> | ||
<label for="upload" class="btn btn-primary me-2 mb-4" tabindex="0"> | ||
<span class="d-none d-sm-block">Upload new photo</span> | ||
<i class="bx bx-upload d-block d-sm-none"></i> | ||
<input type="file" id="upload" class="account-file-input" hidden | ||
accept="image/png, image/jpeg" /> | ||
</label> | ||
<button type="button" class="btn btn-outline-secondary account-image-reset mb-4"> | ||
<i class="bx bx-reset d-block d-sm-none"></i> | ||
<span class="d-none d-sm-block">Reset</span> | ||
</button> | ||
|
||
<p class="text-muted mb-0">Allowed JPG, GIF or PNG. Max size of 800K</p> | ||
</div> | ||
</div> | ||
</div> | ||
<hr class="my-0" /> | ||
<div class="card-body"> | ||
<div class="mb-3 col-12 mb-0"> | ||
<div class="alert alert-warning"> | ||
<h6 class="alert-heading fw-bold mb-1">Are you sure you want to delete your account?</h6> | ||
<p class="mb-0">Once you delete your account, there is no going back. Please be certain. | ||
</p> | ||
</div> | ||
</div> | ||
<form id="formAccountDeactivation" onsubmit="return false"> | ||
<div class="form-check mb-3"> | ||
<input class="form-check-input" type="checkbox" name="accountActivation" id="accountActivation" /> | ||
<label class="form-check-label" for="accountActivation">I confirm my account | ||
deactivation</label> | ||
</div> | ||
<button type="submit" class="btn btn-danger deactivate-account">Deactivate Account</button> | ||
</form> | ||
</div> | ||
</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