@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.add_new_floor') => '#', ], ]) @endsection @section('sidebar') @include('tenant.layouts.sidebar', ['activeItem' => 'rentals.floors']) @endsection @section('content') @csrf @lang('rentals/floors/create.add_new_floor') @lang('rentals/floors/create.number') @lang('rentals/floors/create.building') @foreach ($buildings as $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') {{ old('notice') }} @lang('general.add') @endsection @push('script') @endpush