@extends('layouts.master') @section('title', 'Edit Profile - '. ucfirst($role_name)) @section('pagetitle', 'Edit Profile - '. ucfirst($role_name)) @section('content')
@include('layouts.partials.breadcrumbs', ['breadcrumbs' => [ ['url' => route('dashboard'), 'title' => __('Home')], ['url' => route('profile.view'), 'title' => __('Profile')], ['url' => route('profile.edit'), 'title' => __('Edit')] ]]) @include('layouts.partials.messages')

Edit Profile

Profile Picture

Choose a new avatar to be used in Guildroom

@method('PUT') @csrf

Full Name *

Customize your name on Guildroom

Email*

What email you would like to be contacted

(Note: Your school administrator will be notified)

Phone Number

Your contact number

(Note: Your school administrator will be notified)

Gender*

How you would like to be identified

(Note: Your school administrator will be notified)

@foreach ($genders as $gender)
id == $user->gender_id ? "checked" : "" }} name="gender_id"/>

{{ $gender->name }}

@endforeach

Date of Birth*

For your birthday

Parent/Guardian

add

Parent/Guardian

close
@method('PUT') @csrf

Full Name *

Full name of parent/guardian

Email*

Email address of parent/guardian

Phone Number*

Phone number of parent/guardian

Gender*

Gender of parent/guardian

@foreach ($genders as $gender)
id == ($user->guardian_details['guardian_gender_id'] ?? '') ? "checked" : "" }} name="guardian_gender_id"/>

{{ $gender->name }}

@endforeach

Relationship*

How you are related

Guidance Counsellor

add

Guidance Counsellor

close
@method('PUT') @csrf

Full Name*

Full name of Counsellor

Email*

Email address of consellor

Phone Number *

Phone number of counsellor

Gender*

Gender of counsellor

@foreach ($genders as $gender)
id == ($user->counsellor_details['counsellor_gender_id'] ?? '') ? "checked" : "" }} name="counsellor_gender_id"/>

{{ $gender->name }}

@endforeach

Password

add

Password

close
@method('PUT') @csrf

Old Password

New Password

@endsection @section('scripts') @endsection