@extends('app.template') @section('title', 'Create Scans - COLI') @section('content')
Create New Scan
@if(session('success')) @endif @if(session('error')) @endif @if($errors->any()) @endif
@csrf
Select Target
@foreach($files as $file) @php $relativeFile = str_replace(env('HUNT_PATH'), '', $file); @endphp @endforeach
Type Target
target ? 'checked' : '' }}> {{ ucfirst($scope->type) }} {{ $scope->target }}
Output {{ $relativeFile }}
@error('workflow_id')
{{ $message }}
@enderror
Please select the workflow to use for this scan. Workflows are grouped by category for easier navigation.
Cancel
@endsection