@extends('dashboard.admin.layouts.app') @section('content')

{{ $title }}

@include('dashboard.admin.user.partials.account_options_and_status')
@csrf
{{-- User (read-only context) --}}
{{-- Current Profit Balance (display only) --}}
{{ currency($user->currency) }}
{{-- Plan --}}
@error('plan_id')
{{ $message }}
@enderror
Select the investment plan this profit is attributed to.
{{-- Amount --}}
{{ currency($user->currency) }} @error('amount')
{{ $message }}
@enderror
Enter the profit amount to credit this user's balance.

@endsection