@extends('web.layouts.main') @section('content') @include('web.components.page-header', ['heading' => $page_title])
@if($message = Session::get('status')) @endif
@csrf
@include('web.components.inputs.input', ['label' => trans('text.full-name').'*', 'placeholder' => trans('text.please-specify'), 'name' => 'full_name'])
@include('web.components.inputs.error', ['name' => 'phone_code']) @include('web.components.inputs.error', ['name' => 'phone_number'])
@include('web.components.inputs.select-single', ['label' => trans('text.activities').'*', 'placeholder' => trans('text.please-specify'), 'name' => 'activity', 'rows' => $activities, 'attribute' => 'title'])
@include('web.components.inputs.select-single', ['label' => trans('text.regions').'*', 'placeholder' => trans('text.please-specify'), 'name' => 'region', 'rows' => $regions, 'attribute' => 'title'])
@include('web.components.inputs.input', ['label' => trans('text.sector').'*', 'placeholder' => trans('text.please-specify'), 'name' => 'sector'])
@include('web.components.inputs.input', ['label' => trans('text.alley').'*', 'placeholder' => trans('text.please-specify'), 'name' => 'alley'])
@include('web.components.inputs.input', ['label' => trans('text.street').'*', 'placeholder' => trans('text.please-specify'), 'name' => 'street'])
@include('web.components.inputs.input', ['label' => trans('text.building-number').'*', 'placeholder' => trans('text.please-specify'), 'name' => 'building_number'])
@endsection