@extends('admin.layouts.layout')
@section('title', 'Edit Agreement')
@section('content')
Edit Agreement: {{ $agreement->name }}
@include('admin.agreements._form', [
'mode' => 'edit',
'agreement' => $agreement,
'services' => $services,
'states' => $states,
'languages' => $languages ?? []
])
@endsection