@extends('layouts.app') @section('title') Edit Organic Acid Analysis @endsection @section('breadcrumb')

{{ __('Organic Acid Analysis') }}

@endsection @section('content') @if (Session::has('qc')) @if (strlen(Session::get('qc')) > 0)
Warning

{{ Session::get('qc') }}

Create QC
@endif @endif

{{ __('Edit Organic Acid Analysis') }}

@csrf @method('put') @include('admin.organic_acid_analysis._form')
@if (isset($oaa->prepared_by) && isset($oaa->reviewed_by)) @if ($oaa->status != 'Done')

@endif @can('review_organic_acid_analysis') @endcan
@endif()
@if (!isset($oaa->prepared_by)) @elseif(isset($oaa->prepared_by) && !isset($oaa->reviewed_by)) @can('review_organic_acid_analysis') @endcan @endif
@isset($qc) @if ($qc) @endif @endisset @if (Session::has('sample_barcodes')) @php $samples = Session::get('sample_barcodes'); @endphp @if (count($samples) || strlen(Session::get('qc')) > 0 || count(Session::get('qc_link'))) @endif @endif @endsection