@extends('layouts.member-app') @section('page-title')

{{ __($pageTitle) }}

@lang('modules.tickets.ticket') # {{ $ticket->id }}
@endsection @push('head-script') @endpush @section('content') {!! Form::open(['id'=>'updateTicket','class'=>'ajax-form','method'=>'PUT']) !!}

{{ $ticket->subject }}

{{ $ticket->created_at->format($global->date_format .' '.$global->time_format) }} • {{ ucwords($ticket->requester->name). ' <'.$ticket->requester->email.'>' }}
{!! Form::hidden('status', $ticket->status, ['id' => 'status']) !!}
{!! Form::close() !!} {{--Ajax Modal--}} {{--Ajax Modal Ends--}} @endsection @push('footer-script') @endpush