@extends('admin.template.master') @section('title')

Solution / Feedback {{ $id }}

@endsection @section('main-content')


@if(Session::has('message'))
{{Session('message')}}
@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() !!}
Products
Product Name SKU Brand Product Type Bill No Bill Date Generate DateTime
Possible Reason Details Status DateTime
@endsection @section('javascripts') @endsection