/**
  * Show the form for editing the specified resource.
  *
  * @param  int  $id
  * @return Response
  */
 public function edit($id)
 {
     $user_id = Auth::user()->id;
     $user_role = User::findOrfail($user_id);
     $text = TextWelcome::findOrfail($id);
     return view('admin.text.edit', compact('user_role', 'text'));
 }