@extends ('backend.layouts.app') @section ('title', 'Risk Profiler | Edit Answer') @section('after-styles') @endsection @section('page-header')

Risk Profiler Management Edit Answer

@endsection @section('content') {{ Form::model($answer, ['route' => ['admin.risk_profiler.answer.update', $answer], 'class' => 'form-horizontal', 'role' => 'form', 'method' => 'PATCH', 'id' => 'edit-partner']) }}

Edit Answer

@include('backend.risk_profiler.answer.partials.answer-header-buttons')
{{ Form::label('Title', 'Title', ['class' => 'col-lg-2 control-label']) }}
{{ Form::text('title', null, ['class' => 'form-control', 'required' => 'required', 'placeholder' => 'Enter title']) }}
{{ Form::label('Score', 'Score', ['class' => 'col-lg-2 control-label']) }}
{{ Form::text('score', null, ['class' => 'form-control', 'required' => 'required', 'placeholder' => 'Enter score']) }}
{{ Form::label('Active', 'Active', ['class' => 'col-lg-2 control-label']) }}
{{ link_to_route('admin.risk_profiler.answer.index', trans('buttons.general.cancel'), [], ['class' => 'btn btn-danger btn-xs']) }}
{{ Form::submit(trans('buttons.general.crud.update'), ['class' => 'btn btn-success btn-xs']) }}
{{ Form::close() }} @endsection