@endif
{!! Form::open(['url' => '/admin/repair-services-from-ryans-feedback/'. $id ]) !!}
{{ $install->token_no }}
{{ $install->serviceType->service_type_name }}
{{ $install->details }}
{{ $install->phone }}
{!! Form::label('possible_reason','Possible Reason') !!}
{!! Form::select('possible_reason', $reasons , ['class' => 'form-control select2', 'placeholder' => 'possible_reason', 'id' => 'possible_reason']) !!}
@if ($errors->has('possible_reason'))
{!! $errors->first('possible_reason') !!}
@endif
{!! Form::label('note','Note') !!}
{!! Form::textarea('note', isset($question->note) ? $question->note : null, ['class' => 'form-control', 'placeholder' => 'Note', 'id' => 'note']) !!}
@if ($errors->has('note'))
{!! $errors->first('note') !!}
@endif
{!! Form::label('status','Status') !!}
{!! Form::select('status', ['PENDING' => 'PENDING', 'WORKING' => 'WORKING', 'FINISHED' => 'FINISHED', 'CANCELED' => 'CANCELED'], ['class' => 'form-control select2', 'placeholder' => 'status', 'id' => 'status']) !!}
@if ($errors->has('status'))
{!! $errors->first('status') !!}
@endif
{!! Form::close() !!}