@extends('layouts.app') @section('title', 'My Profile') @section('content')
My Profile
@if(session('success')) @endif @if($errors->any()) @endif
@csrf @method('PUT')
Basic Information
@error('username')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
@if($user->user_type === 'student')
@error('phone')
{{ $message }}
@enderror
@else
@error('phone')
{{ $message }}
@enderror
@endif
User type cannot be changed
@if($user->user_type === 'student' && $user->student)
Your student identification number
@if($user->student->batch)
@endif @endif @if($user->user_type === 'teacher' && $user->teacher)
@endif
Change Password

Leave password fields blank if you don't want to change your password.

@error('password')
{{ $message }}
@enderror
Account Information
Cancel
@endsection