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

{{ __($pageTitle) }}

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

{{ $ticket->subject }}

Unit
:
FLoor
:
{{ $ticket->created_at->timezone($global->timezone)->format($global->date_format.' '.$global->time_format) }} • {{ ucwords($ticket->requester->name). ' <'.$ticket-> requester->email.'>' }}
{!! Form::hidden('status', $ticket->status, ['id' => 'status']) !!}
@forelse($ticket->reply as $reply) @empty
@lang('messages.noMessage')
@endforelse
{!! Form::close() !!} {{--Ajax Modal--}} {{--Ajax Modal Ends--}} @endsection @push('footer-script') @endpush