@extends('tenant.layouts.master') @section('style') @endsection @section('breadcrumb') @include('tenant.layouts.breadcrumb', [ 'items' => [ __('breadcrumb.rentals') => '/rentals', __('breadcrumb.floors') => route('tenant.rentals.floors.index'), __('breadcrumb.edit_floor') => '#', ], ]) @endsection @section('sidebar') @include('tenant.layouts.sidebar', ['activeItem' => 'rentals.floors']) @endsection @section('content') @method('put') @csrf @lang('rentals/floors/create.edit_floor') @lang('rentals/floors/create.number') @lang('rentals/floors/create.building') @foreach ($buildings as $building) building->id == $building->id ? 'selected' : '' }}> {{ $building->title }} @endforeach @lang('rentals/floors/create.name') @lang('rentals/floors/create.area') @lang('rentals/floors/create.shops_area') @lang('rentals/floors/create.deterioration_or_corridors_area') @lang('rentals/floors/create.notes') {{ $floor->notice }} @lang('general.edit') @endsection