$answer = Answer::find($id); $answer->gender = $request->input('gender'); $answer->age = $request->input('age'); $answer->education = $request->input('education'); $answer->occupation = $request->input('occupation'); $answer->etc = $request->input('etc'); $answer->save(); return redirect('...'); @extends('layouts.app') @section('page-title')

answers

@endsection @section('content')
@endsection @section('script') @endsection @section('style') @endsection