@extends('layouts.master') @section('page_title', 'Edit Question')
{{ Form::page_header("Edit Question", "business") }}
{{ Form::button_link('Back', action('ProductionChecklistSourceController@checklist_section_questions',compact('qa_checklist_section')), 'back_btn') }}
@include('shared._message_all')
{!! Form::model($qa_checklist_question, ['url' => action('ProductionChecklistSourceController@post_edit_question',compact('qa_checklist_section','qa_checklist_question'))]) !!}

{{ Form::label_styled('Question:', 'source-data-label', \App\Helpers\FormComponentHelper::SIZE_LARGE) }} {{ Form::text_styled('question', null, 'account-pages-text-input md-lg', null) }} {{ Form::hidden('active', 0) }} {{ Form::checkbox('active', 1, null, ['class' => 'brand-checkbox no-fade']) }}
{{ Form::button_save('Update Question') }}
{{ Form::separator_row() }} {!! Form::close() !!}
@section('content') @endsection @section('page_script') @endsection @section('page_style') @endsection