@extends('adminlte::page') @section('title', 'Edit Bail Application') @section('content_header')

Edit Bail Application

Back to List View Details
@stop @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')

Application Details

@if($application->status !== 'pending') @endif
@if($application->status !== 'pending') @endif

Bail Conditions

@if($application->conditions->count() > 0) @foreach($application->conditions as $index => $condition)
@endforeach @else

No conditions added yet. Click "Add Condition" to add bail conditions.

@endif

Status

@if($application->status !== 'pending') Status can only be changed from the details page once the application is no longer pending. @endif
status === 'approved' && $application->status !== 'pending' ? 'readonly' : '' }}>
status === 'approved' && $application->status !== 'pending' ? 'readonly' : '' }}>

Surety Information

Cancel
@stop @section('css') @stop @section('js') @stop