@extends('admin.layouts.app') @section('title', 'Edit University') @section('content')
@csrf @method('PUT')
@error('name')
{{ $message }}
@enderror
@error('address')
{{ $message }}
@enderror
@error('phone')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
@if($university->logo)
@endif

{{ $university->logo ? 'Upload New Logo' : 'Upload University Logo' }}

Supported formats: JPG, PNG, GIF (Max: 2MB) @error('logo')
{{ $message }}
@enderror
Preview
{{ $university->name }}
{{ $university->address }}

Created: {{ $university->created_at->format('M d, Y \\a\\t h:i A') }} @if($university->updated_at != $university->created_at) | Updated: {{ $university->updated_at->format('M d, Y \\a\\t h:i A') }} @endif
Cancel
@endsection