@extends("layouts.dashboard") @section("title", "Settings - Dashboard | TechnoBlog") @section("dashboard_content")

Settings

@method("patch") @csrf

Personal Information

user->name) }}" name="name" class="form-control">
user->surname) }}" name="surname" class="form-control">
user->mobile_number) }}" name="mobile_number" class="form-control">
short_bio) }}" name="short_bio" class="form-control" autocomplete="off">
https://technoblog.com/profile/ profile_link) }}" name="profile_link" class="form-control" autocomplete="off">
@method("patch") @csrf

Photos

@method("patch") @csrf

Social Site Links

https://facebook.com/ facebook_link) }}">
https://instagram.com/ instagram_link) }}">
https://twitter.com/ twitter_link) }}">
https://youtube.com/ youtube_link) }}">
@ skype_link) }}">
@method("patch") @csrf

Username

After changing your username you will be logged out automatically.
user->username) }}" name="username" class="form-control">
@method("patch") @csrf

Password

After changing your password you will be logged out automatically.
@method("patch") @csrf

E-mail

This is where lost password requests will be sent. After changing your e-mail you will be logged out automatically.
user->email) }}" name="email" class="form-control">

Danger Zone

Before you delete your account you need to choose any admin or editor to transfer your posts. After that all informations related to your account will be deleted permanently.
Delete account
@if (auth()->user()->hasPermission("access_all_phases"))

Phases Create New

@foreach($phases as $phase) @endforeach
Name Reviewer Actions
{{ $phase->name }} {{ ucfirst($phase->reviewer->name) }}
@endif @if(auth()->user()->hasPermission("access_all_post_securities"))

Post security Create New

@foreach($postSecurities as $postSecurity) @endforeach
To be reviewed Phases Actions
{{ ucfirst($postSecurity->role->name) }} {{ $postSecurity->phase_names }}
@endif
@endsection