@extends('layouts.app') @section('title', 'Edit Package - ISP ERP System') @section('page-title', 'Edit Package') @section('content')

Edit Package

Update package information and settings

Package Information
@csrf @method('PUT')
@error('name')
{{ $message }}
@enderror
Enter a unique name for the package
BDT
@error('price')
{{ $message }}
@enderror
Enter the monthly price for this package
Mbps
@error('speed_mbps')
{{ $message }}
@enderror
Enter the internet speed in Mbps (optional)
@error('is_active')
{{ $message }}
@enderror
Set the package status
@error('branch_id')
{{ $message }}
@enderror @if(\App\Helpers\PermissionHelper::isSuperUser(auth()->id()))
All active branches are available (Super User)
@else
Your main branch and all sub branches are available
@endif
@error('description')
{{ $message }}
@enderror
Provide details about this package (optional)
Cancel
Package Details
{{ $package->id }}
@if($package->is_active) Active @else Inactive @endif
{{ number_format($package->price, 2) }} BDT
@if($package->speed_mbps)
{{ $package->speed_mbps }} Mbps
@endif
{{ $package->created_at->format('M d, Y H:i') }}
{{ $package->updated_at->format('M d, Y H:i') }}
@endsection @section('styles') @endsection