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

Edit Student

@csrf @method('PUT')
@error('name') {{ $message }} @enderror
@error('email') {{ $message }} @enderror
@error('university_name') {{ $message }} @enderror
@error('photo') {{ $message }} @enderror @if ($student->photo) Student Photo @endif
@error('passport_photo') {{ $message }} @enderror @if ($student->passport_photo) @php // Get the file extension of the passport photo $fileExtension = pathinfo($student->passport_photo, PATHINFO_EXTENSION); @endphp @if (in_array($fileExtension, ['jpg', 'jpeg', 'png', 'gif'])) Passport Photo @else

Download Passport

@endif @endif
@endsection
@endsection