@extends('admin.app') @section('page_title','Add New Entity') @section('page_location') @endsection @section('main-content')

Add New Entity Type

{!! Form::open(array('route' => 'typeentity.store', 'class' => 'form' ,'id' =>'createroomsform','files' => true)) !!}
{!! Form::label('Name') !!} {!! Form::text('name', null, array('required', 'class'=>'form-control', 'placeholder'=>'Name')) !!}
{!! Form::submit('Add New!!', array('class'=>'btn btn-primary')) !!}
{!! Form::close() !!}
@endsection