@extends('frontend.layouts.app') @section('content')

{{ __('Support Tickets') }}

@csrf
{{__('Name')}}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
{{__('Email Address')}}
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
{{__('Subject')}}
@if ($errors->has('subject')) {{ $errors->first('subject') }} @endif
{{__('Message')}}
@if ($errors->has('message')) {{ $errors->first('message') }} @endif
{{__('Upload Your File')}}
@if ($errors->has('file')) {{ $errors->first('file') }} @endif

Valid file type : jpg, jpeg, gif, png and File size max : 10 MB

@include('frontend.student.support_ticket.render-ticket-list')
@endsection @push('script') @endpush