@extends(Auth::check() && Auth::user()->role->layout == 1 ? 'layouts.admin' : 'layouts.employee') @section('content')

Formularios

{{trans('general.edit')}} respuesta

{!! Form::model($answer, ['method' => 'PATCH', 'url' => 'answers/'.$answer->id]) !!} {!! Form::hidden('id', $answer->id) !!} @include('answers.form') {!! Form::close() !!}
@endsection