@extends('admin.layouts.master')
@section('title', 'Edit Tenant')
@section('page-title', 'Edit Tenant')
@section('breadcrumbs')
Tenants
{{ $tenant->name }}
@endsection
@section('content')
@include('admin.tenants._form', ['action' => route('admin.tenants.update', $tenant), 'method' => 'PUT'])
@endsection