{!! Form::open(['method' => 'PATCH', 'url' => '/admin/customer-supports/' .$customerSupport->customer_support_id]) !!}
{!! Form::label('ryans_response', 'Ryans response') !!}
{!! Form::select('ryans_response', $ryansResponses, isset($customerSupport->ryans_response) ? $customerSupport->ryans_response : null, ['class' => 'form-control', 'id' => 'ryans_response']) !!}
{!! Form::label('action_taken', 'Action Taken') !!}
{!! Form::select('action_taken', $actionTaken, isset($customerSupport->action_taken) ? $customerSupport->action_taken : null, ['class' => 'form-control', 'id' => 'action_taken']) !!}
{!! Form::label('findings_by_engineer', 'Problem details by engineer') !!}
{!! Form::textarea('findings_by_engineer', $customerSupport->findings_by_engineer ? $customerSupport->findings_by_engineer : null, ['rows' => 3, 'class' => 'form-control', 'id' => 'findings_by_engineer']) !!}
{!! Form::label('status', 'Status') !!}
{!! Form::select('status', $status, isset($customerSupport->status) ? $customerSupport->status : null, ['class' => 'form-control', 'id' => 'status']) !!}
{!! Form::label('Status By') !!}
{{ $customerSupport->user_name ? $customerSupport->user_name : 'N/A'}}
{!! Form::close() !!}