@extends('layouts.admin') @section('title') Edit Contract Type @endsection @section('content')

Edit Contract Type


@csrf

status == 'active') ? 'checked':'' }} >
@if(count($contract_types) > 0) @foreach($contract_types as $t) @endforeach @else @endif
# Title (EN) Title (KM) Status Actions
{{ $i++ }} {{ $t->title_en }} {{ $t->title_km }} @if($t->status == 'active')
Active
@elseif($t->status == 'inactive')
Inactive
@endif
No Contract Type found
@endsection @section('script') @endsection