@extends('layouts.app') @section('content')
{{-- Title --}}

Manage Depths

{{-- Success Message --}} @if (session('success'))
{{ session('success') }}
@endif {{-- Depth Form --}}

Add New Depth

@csrf {{-- Sign Type --}}
@error('sign_type_id')

{{ $message }}

@enderror
{{-- Standard --}}
@error('standard')

{{ $message }}

@enderror
{{-- Minimum --}}
@error('minimum')

{{ $message }}

@enderror
{{-- Maximum --}}
@error('maximum')

{{ $message }}

@enderror
{{-- Submit --}}
{{-- Depths Table --}}

All Depths

@forelse($depths as $depth) @empty @endforelse
# Sign Type Standard Minimum Maximum
{{ $loop->iteration }} {{ $depth->signType->name }} {{ $depth->standard }} {{ $depth->minimum }} {{ $depth->maximum }} Edit
No depths found
@endsection