@extends('adminlte::page') @section('css') @endsection @section('title', 'Reef | Support Ticket') @section('content')
@if(Session::has('error'))

{{ Session::get('error') }}

@endif

Reply ticket

@if(Session::has('message'))

{{ Session::get('message') }}

@endif @livewire('dashboard.support-ticket.ticket-form', ['support_ticket' => $support_ticket])
@stop