@extends('layouts.app') @section('content')

Ответственный

@csrf @include('partials.select', ['name' => 'area_id', 'title' => 'Район', 'options' => $areas, 'value' => $responsible->area?->id]) @include('partials.input', ['name' => 'name', 'title' => 'ФИО', 'required' => true, 'value' => $responsible->name]) @include('partials.input', ['name' => 'phone', 'title' => 'Телефон', 'required' => true, 'value' => $responsible->phone]) @include('partials.input', ['name' => 'post', 'title' => 'Должность', 'value' => $responsible->post]) @include('partials.submit', ['name' => 'Сохранить', 'delete' => ['form_id' => 'destroy', 'title' => 'Удалить']])
@csrf @method('DELETE')
@endsection