profile
This commit is contained in:
parent
824c727592
commit
cc7346fcb2
Binary file not shown.
|
After Width: | Height: | Size: 41 KiB |
|
|
@ -2,8 +2,6 @@
|
||||||
|
|
||||||
@section('title', 'Profil Admin')
|
@section('title', 'Profil Admin')
|
||||||
|
|
||||||
@endsection
|
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
<div class="content-wrapper">
|
<div class="content-wrapper">
|
||||||
<div class="row justify-content-center">
|
<div class="row justify-content-center">
|
||||||
|
|
@ -30,8 +28,8 @@
|
||||||
|
|
||||||
<img
|
<img
|
||||||
src="{{ $admin->foto
|
src="{{ $admin->foto
|
||||||
? asset('assets/admin/foto-admin/' . $admin->foto)
|
? asset('storage/' . $admin->foto)
|
||||||
: asset('assets/admin/images/user.jpg') }}"
|
: asset('storage/default-avatar.png') }}"
|
||||||
class="mb-3 rounded-circle"
|
class="mb-3 rounded-circle"
|
||||||
width="160"
|
width="160"
|
||||||
height="160"
|
height="160"
|
||||||
|
|
|
||||||
|
|
@ -58,7 +58,7 @@
|
||||||
@endphp
|
@endphp
|
||||||
|
|
||||||
<img src="{{ $user && $user->foto
|
<img src="{{ $user && $user->foto
|
||||||
? asset('assets/admin/foto-admin/' . $user->foto)
|
? asset('storage/' . $user->foto)
|
||||||
: asset('assets/admin/images/user.jpg') }}"
|
: asset('assets/admin/images/user.jpg') }}"
|
||||||
alt="profile" />
|
alt="profile" />
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@
|
||||||
<section id="hero" class="hero section">
|
<section id="hero" class="hero section">
|
||||||
|
|
||||||
<div class="container text-center d-flex flex-column justify-content-center align-items-center position-relative">
|
<div class="container text-center d-flex flex-column justify-content-center align-items-center position-relative">
|
||||||
<h1>Selamat Datang di <span>SIG TPS Nganjuk</span></h1>
|
<h1>Selamat Datang di <span>SIG TPS</span></h1>
|
||||||
<p>Sistem Informasi Geografis Pemetaan Tempat Pembuangan Sampah di Kabupaten Nganjuk</p>
|
<p>Sistem Informasi Geografis Pemetaan Tempat Pembuangan Sampah di Kabupaten Nganjuk</p>
|
||||||
<div class="d-flex">
|
<div class="d-flex">
|
||||||
<a href="#sebaranTPS" class="btn-get-started scrollto">Lihat Peta</a>
|
<a href="#sebaranTPS" class="btn-get-started scrollto">Lihat Peta</a>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue