show.blade.php
1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
@extends('layout.admin', ['title' => 'Просмотр компании'])
@section('content')
<div class="profile-block-wrapper">
<div class="profile-block">
<h2 class="modal-auth__title_">
Просмотр компании
</h2><br><br>
<a href="{{ route('admin.company.edit', ['company' => 1]) }}" class="btn banner-container__button" style="margin: 0px;">
Редактировать компанию
</a><br><br>
<label class="form__label" for="title">Заголовок
</label><br>
<p>{{ $company->title }}</p><br><br>
<label class="form__label" for="text">Текст
</label><br>
<p>{{ $company->text }}</p><br><br>
<label class="form__label" for="area_demo">Площадь демонстрационного зала
</label><br>
<p>{{ $company->area_demo }}</p><br><br>
<label class="form__label" for="workers">Число сотрудников
</label><br>
<p>{{ $company->workers }}</p><br><br>
<label class="form__label" for="stock_area">Площадь складских помещений
</label><br>
<p>{{ $company->stock_area }}</p><br><br>
<label class="form__label" for="name_equipment">Количество наименований оборудования
</label><br>
<p>{{ $company->name_equipment }}</p><br><br>
</div>
</div>
@endsection