@extends('layouts.admin') @section('title', 'Update IB Status') @section('content')

Update IB Status

IB Details

Name: {{ $ib->name }}
Email: {{ $ib->email }}
Current Status: {{ $ib->is_active ? 'Active' : 'Inactive' }}
Joined On: {{ $ib->created_at->format('d M, Y') }}

Update Status

@csrf @method('PATCH')
Back to IB Management
@endsection