@extends('layouts.main') @section('title') House Type @endsection @section('page-title')

@yield('title')

@endsection @section('content')

Create House Type

{!! Form::open(['url' => route('housetype.store')]) !!}
{{ Form::label('type', 'House Type', ['class' => 'form-label col-sm-4 text-center']) }}
{{ Form::text('type', '', ['class' => 'form-control', 'placeholder' => 'House Type', 'required' => 'true']) }}
{{ Form::submit('Save', ['class' => 'btn btn-primary me-1 mb-1']) }}
{!! Form::close() !!}
@if (has_permissions('update', 'type')) @endif
ID TypeAction
@endsection @section('script') {{-- --}} @endsection