@extends('installer.layout') @section('title', 'Application') @section('subtitle', 'Configure your application settings') @section('content')

Application Settings

Configure the basic settings for your application. These settings can be changed later through your .env file.

@csrf
@if($errors->has('app_name'))
{{ $errors->first('app_name') }}
@endif
This name will be used throughout your application.
@if($errors->has('app_url'))
{{ $errors->first('app_url') }}
@endif
The URL where your application is hosted (e.g., https://example.com).

Steam Authentication

The application supports Steam login. The callback URL will be automatically set based on your Application URL.

@if($errors->has('steam_client_secret'))
{{ $errors->first('steam_client_secret') }}
@endif
Your Steam API secret key obtained from the Steam Developer Portal.
@endsection @section('footer') Back
@endsection