@extends('layouts.app') @section('title', $formTitle) @section('content')

{{ $formTitle }}

Back to List
@include('layouts.partials.flash')
@csrf @if($formMethod != 'POST') @method($formMethod) @endif
@error('name')
{{ $message }}
@enderror
@error('point')
{{ $message }}
@enderror
This is the number of points that will be awarded to customers when they create a new shipment.
@if ($pointMaster->exists && $pointMaster->is_active)
This point master is currently active.
@endif Only one point master can be active at a time. Setting this one as active will deactivate all others.
Cancel
@endsection