@extends('layouts.admin') @section('content') @php use App\Support\Crm\FollowupOptions; $isEdit = isset($followup) && $followup; @endphp
@include('elements.admin-breadcrumb')
@include('elements.alert-error')
@csrf @if($isEdit) @method('PUT') @endif
@if($contact) @else @endif
@foreach(FollowupOptions::interactionModes() as $mode)
interaction_mode ?? 'Tele call') === $mode ? 'checked' : '' }}>
@endforeach
@foreach(FollowupOptions::statuses() as $status)
status ?? 'Open') === $status ? 'checked' : '' }}>
@endforeach
Cancel
@endsection