@extends('layouts.app') @section('title', 'Settings') @section('content')

System Settings

Configure system preferences and user settings

{{-- @if(session('success'))
{{ session('success') }}
@endif --}}

Profile Information

Update your account profile information

@csrf @method('PUT')
@error('name')

{{ $message }}

@enderror
@error('email')

{{ $message }}

@enderror

Security Settings

Manage your account security

@csrf @method('PUT')

Password

@error('current_password')

{{ $message }}

@enderror
@error('password')

{{ $message }}

@enderror

System Information

Application Version

v1.0.0

Laravel Version

{{ Illuminate\Foundation\Application::VERSION }}

PHP Version

{{ PHP_VERSION }}

Database

MySQL

Environment

{{ ucfirst(config('app.env')) }}

Appearance

@csrf @method('PUT')

Need Help?

Our support team is here to assist you

@endsection