@extends('customer.layout') @section('title','Create Ticket') @section('content')
Create New Ticket
{{-- SUCCESS MESSAGE --}} @if(session('success'))
{{ session('success') }}
@endif {{-- ERROR MESSAGE --}} @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf {{-- SUBJECT --}}
{{-- PRIORITY --}}
{{-- MESSAGE --}}
{{-- IMAGE UPLOAD --}}
JPG, PNG (max 2MB)
{{-- ACTION --}}
Cancel
@endsection