@extends('layouts.admin') @push('script-page') @endpush @section('page-title') {{__('Support Reply')}} @endsection @section('title')
{{__('Support Reply')}}
@endsection @section('breadcrumb') @endsection @section('action-btn') @endsection @section('filter') @endsection @section('content')
{{$support->subject}}
@if(!empty($support->descroption))

{{$support->descroption}}

@endif
@if($support->status == 'Open')
{{__('Comments')}}
{{ Form::open(array('route' => array('support.reply.answer',$support->id))) }}
{{Form::submit(__('Send'),array('class'=>'btn btn-primary'))}}
{{ Form::close() }} @endif
@endsection