/**
  * Show the form for editing the specified resource.
  *
  * @param  int  $id
  * @return Response
  */
 public function index()
 {
     $contact = Contact::first();
     return View('admin.contact')->with('title', 'Edit Contact Page')->with('contact', $contact);
 }