@extends('layouts.admin') @section('title','Settings') @section('page-title','Business Settings') @section('content')
@csrf @method('PUT') @if($errors->any())
{{ $errors->first() }}
@endif @if(session('success'))
{{ session('success') }}
@endif

Business Information

Social Media

Booking Settings

💳 Paystack Payment Gateway

Get your API keys from dashboard.paystack.com → Settings → Developer. Use Live keys in production.
⚠️ Paystack keys are stored in your .env file (not in this settings form). Edit rukays-salon/.env directly on your server to set:
PAYSTACK_PUBLIC_KEY=pk_live_xxxx PAYSTACK_SECRET_KEY=sk_live_xxxx
Without keys: the system runs in demo mode — bookings go straight to confirmed (useful for testing). Add keys when ready to accept real payments.
@endsection