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

Edit Faculty Profile

@csrf @method('PUT')
Separate multiple qualifications with commas (e.g., B.Tech, M.Tech, Ph.D)
@php $user = auth()->user(); $imagePath = $profile->profile_photo_path ?? $user->profile_image; $imageUrl = asset('assets/frontend/images/profile-icon.svg'); // Default if ($imagePath) { if (Str::startsWith($imagePath, ['http://', 'https://'])) { $imageUrl = $imagePath; } else { $imageUrl = Storage::disk('public')->url($imagePath); } } @endphp
Profile Photo
@endsection