@extends('layouts.vertical-master-layout') @section('title', __('Document')) @section('content')
@if ($institute->document)
{{ __('Current Document:') }}
@php $extension = pathinfo($institute->document, PATHINFO_EXTENSION); $fileUrl = asset('storage/' . $institute->document); @endphp @if (in_array($extension, ['jpg', 'jpeg', 'png']))
Document Image {{ __('View Full Image') }}
@elseif ($extension === 'pdf')
{{ __('Open Full PDF') }} @else

{{ __('Unsupported file format.') }}

@endif @else

{{ __('No document uploaded yet.') }}

@endif
{{ __('Status:') }}
@if($institute->approved == 1) {{ __("Approved") }} @else {{ __("Rejected") }} @endif
@endsection