@extends('layouts.app') @section('title', 'Edit Progress') @section('breadcrumb') @endsection @section('title-section', 'Edit Progress ' . $data->prosesLayanan->nama_proses) @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
status == 'PENDING' ? 'checked' : '' }} />
status == 'PROSES' ? 'checked' : '' }} />
status == 'SELESAI' ? 'checked' : '' }} />
status == 'BATAL' ? 'checked' : '' }} />
Kembali
@endsection