Skip to content
This repository has been archived by the owner on Feb 9, 2025. It is now read-only.

Commit

Permalink
Update AdminController.php
Browse files Browse the repository at this point in the history
update some text language from indo to eng
  • Loading branch information
fherryfherry authored Jul 28, 2016
1 parent cb91b2a commit b952481
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/Http/Controllers/ControllerMaster/AdminController.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function __construct() {
}

function getIndex() {
if(!Session::get('admin_id')) return redirect('admin/login')->with("message","Silahkan Login Terlebih Dahulu !");
if(!Session::get('admin_id')) return redirect('admin/login')->with("message","Please login first !");
if(Session::get('admin_lock')) return redirect('admin/lockscreen');

$data = array();
Expand Down Expand Up @@ -816,7 +816,7 @@ public function postLogin() {

return redirect('admin');
}else{
return redirect('admin/login')->with('message', 'Maaf password yang anda masukan salah !');
return redirect('admin/login')->with('message', 'Sorry the password is wrong !');
}
}

Expand Down Expand Up @@ -849,7 +849,7 @@ public function postForgot() {

send_email($user->email,"Forgot Password",$data,$this->setting->email_sender,"emails.forgot");

return redirect('admin/login')->with('message', 'Berhasil mengirimkan password baru ke email anda !');
return redirect('admin/login')->with('message', 'We have sent new password to your email, check inbox or spambox !');

}

Expand Down

0 comments on commit b952481

Please sign in to comment.