public function show_profil_en($slug)
 {
     $profil = About::whereSlug($slug)->firstOrFail();
     return view('profil.showprofil', compact('profil', 'all_about'));
 }
 public function delete_profil_en($slug)
 {
     $profil = About::whereSlug($slug)->firstOrFail()->delete();
     return Redirect::route('daftar_profil');
 }