@extends('layout.default', ['appTopMenu' => true]) @php use App\Models\Masters\Master_model; @endphp @section('title','RTI Appeal Form ') @push('scripts')
@endpush @push('head') @endpush @section('content')
@if (session('status'))
{!! session('status') !!}
@elseif(session('failed'))
{{ session('failed') }}
@endif
@csrf @if( !empty($app_details->id))
@endif
Registration [Form-F]
@php $sn_language='-1'; $sn_language=session()->get('sn_language'); @endphp
RTI Application ID:
/1970
Applicant Name:
{{ $app_details->name ?? old('txtname')}}
Father's Name:
{{ $app_details->f_name ?? old('txtfname')}}
Age:
{{ $app_details->age ?? old('txtage')}}
Occupation:
{{ $app_details->occupation ?? old('txtoccupation')}}
Information Required:
{{$app_details->info_req1 ?? old('txtinforeq1')}}
Period for which information asked for:
{{ $app_details->info_period ?? old('txtinfoperiod')}}
Other Details:
{{ $app_details->other_detail ?? ' Not Available'}}
Address:
{{ $app_details->address ?? old('txtaddress')}}
Pincode:
{{ $app_details->pincode ?? old('pincode')}}
Application Date of Submission of Form "A":
{{ !empty($app_details->app_date) ? \Carbon\Carbon::parse($app_details->app_date)->format('d-m-Y'):old('txtappdate') }}
Date on which 30 Days Completed after Submit Form "A":
{{ date("Y-m-d", strtotime("+30 days", strtotime($app_details->app_date))) }}
Last date to Apply
21-07-2025
Treasury Challan Number:
Treasury Challan Amount:
Another person is authorized for RTI Appeal
Name of Authorized Person:
Address of Authorized Person:
Upload Identity Card of Authorized Person:
Photo Upload of Authorized Person:
Sign Upload of Authorized Person:
Mobile Number of Authorized Person:
(A) Not received any response within 30 days of presentation of Form 'A'.
(B) Not satisfied with given answers
(Upload Copy of information/letter of Rejection).
Ground Of Appeal
RTI Appeal Can not be applied as 30 days are already past from the date of order.
@endsection