@extends('backend.layouts.app') @section('title', __('room::labels.room.management') . ' | ' . __('room::labels.room.create')) @section('content')

@lang('room::labels.room.management') @lang('room::labels.room.create')

{{ html()->form('POST', route('admin.room.store'))->class('form-horizontal')->attribute(' autocomplete="off" data-parsley-validate')->open() }}
{{ html()->label(__('room::validation.room.name')) ->class('col-md-2 form-control-label') ->for('name') }}
{{ html()->text('name') ->class('form-control') ->placeholder(__('room::validation.room.name')) ->attribute('maxlength', 191) ->required()->attribute(' data-parsley-required="true"') ->autofocus() }}
{{ html()->label(__('room::validation.room.group')) ->class('col-md-2 form-control-label') ->for('name') }}
{{ form_cancel(route('admin.room.index'), __('buttons.general.cancel')) }}
{{ form_submit(__('buttons.general.crud.create')) }}
{{ html()->form()->close() }}
@endsection