@extends('layouts.user') @section('title', 'Profile Settings') @section('content')
@include('user.sidebar')

⚙️ Profile Settings

View Website
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (session('success'))
{{ session('success') }}
@endif

Basic Information

@csrf @method('PUT')

Change Password

@csrf
@endsection