Kaydet (Commit) 641f677b authored tarafından Baran Sekin's avatar Baran Sekin

Fir for #134

üst f4617957
......@@ -33,6 +33,7 @@
"Tümünü Okundu Olarak İşaretle": "Mark all as Read",
"Okunanları Sil": "Delete read ones.",
"Profilim": "My profile",
"İsim Soyisim": "Full Name",
"Kullanıcı Adı": "Username",
"Eski Parola": "Old password",
"Parola": "Password",
......
......@@ -176,5 +176,11 @@ return [
'birth_date' => 'Doğum Tarihi',
'subject' => 'Konu',
'message' => 'Mesaj',
'note' => 'Açıklama',
'type' => 'Tip',
'speed' => 'Önem Derecesi',
'extension' => 'Eklenti',
'dn' => 'DN',
'role_id' => 'Rol Grubu'
],
];
......@@ -80,14 +80,14 @@
</li>
<li class="nav-item dropdown">
<a class="nav-link" data-toggle="dropdown" href="#">
<i class="fa fa-user"></i>
<span class="d-none d-sm-inline-block">{{user()->name}}</span>
<i class="fa fa-user mr-1"></i>
<span class="d-none d-sm-inline-block" title="{{ user()->name, 20 }}">{{ str_limit(user()->name, 20)}}</span>
</a>
<div class="dropdown-menu dropdown-menu-lg dropdown-menu-right">
<div class="card card-widget widget-user-2" style="margin-bottom: 0px;">
<div class="widget-user-header bg-secondary" style="color:white">
<h3 class="widget-user-username" style="margin-left: 0px;">{{user()->name}}</h3>
<h3 class="widget-user-username" style="margin-left: 0px;" title="{{ user()->name, 20 }}">{{ str_limit(user()->name, 20)}}</h3>
<h5 class="widget-user-desc" style="margin-left: 0px;font-size: 13px;">{{__("Son Giriş Tarihi : ") . user()->last_login_at}}</h5>
<h5 class="widget-user-desc" style="margin-left: 0px;font-size: 13px;">{{__("Giriş Yapılan Son Ip : ") . user()->last_login_ip}}</h5>
<h5 class="widget-user-desc" style="margin-left: 0px;font-size: 13px;">{{__("Bağlı Liman : ") . getLimanHostname()}}</h5>
......
......@@ -34,7 +34,7 @@
<div class="card-body">
<form class="form-horizontal" onsubmit="return saveUser(this)">
<div class="form-group row">
<label for="inputName" class="col-sm-2 col-form-label">{{__("Kullanıcı Adı")}}</label>
<label for="inputName" class="col-sm-2 col-form-label">{{__("İsim Soyisim")}}</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputName" name="name" value="{{auth()->user()->name}}" required minlength="6" maxlength="255" @if(user()->auth_type == "ldap") disabled @endif>
</div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment