@extends('admin.layouts.layout')
@section('title', 'Create Agreement')
@section('content')
@include('admin.agreements._form', [
'mode' => 'create',
'agreement' => new \App\Models\Agreement,
'services' => $services,
'states' => $states,
'languages' => $languages ?? []
])
@endsection