@extends('layouts.app') @section('content')
@lang('models/tblPropertyApartments.singular')
@include('common.errors')
{!! html()->form('POST', route('tblPropertyApartments.store'))->open() !!}
{!! Form::label('title', __('الشقة').'') !!} {!! html()->text('title', null)->class('form-control')${5:->id('')} !!}
{!! Form::label('title', __('رقم الشقة').'') !!} {!! html()->number('no_of_apartment', null)->class('form-control') !!}
{!! Form::label('title', __('الرمز الخاص').'') !!} {!! html()->number('unique_code', null)->class('form-control') !!}
{!! Form::label('title', __('السعر باليوم').'') !!} {!! html()->text('priceperday', null)->class('form-control')${5:->id('')} !!}
{!! Form::label('title', __('وصف الشقة ').'') !!} {!! html()->text('description', null)->class('form-control')${5:->id('')} !!}
{!! Form::label('title', __('العدد المسموح').'') !!} {!! html()->number('no_of_guest', null)->class('form-control') !!}
{!! Form::label('title', __('is_similar_apartment').'') !!} {!! html()->number('is_similar_apartment', null)->class('form-control') !!}
{!! Form::label('title', __('وقت الدخول') . ':') !!} {!! Form::time('check_in_time', null, ['class' => 'form-control']) !!}
{!! Form::label('title', __('وقت الخروج') . ':') !!} {!! Form::time('check_out_time', null, ['class' => 'form-control','required'=>'required']) !!}
{!! Form::label('title', __('قيمة العربون ').'') !!} {!! html()->text('deposit_price', null)->class('form-control')${5:->id('')} !!}
{!! Form::hidden('building_id',$id, ['class' => 'form-control']) !!}
{!! Form::hidden('created_by_id', Auth::user()->id, ['class' => 'form-control']) !!}
{!! Form::hidden('created_on', date('Y-m-d H:i:s'), ['class' => 'form-control']) !!}
{!! html()->form()->close() !!}
@endsection