@extends('layouts.master') @section('title') Create Tenant @stop @section('content')

Add Tenant

{{ Form::open(['role' => 'form', 'action' => array('TenantController@store', $building->id)]) }}
{{ Form::label('username', 'Username') }} {{ Form::text('username', Tenant::generateUsername(8), ['class' => 'form-control', 'readonly' => 'readonly']) }} @if ($errors->has('username'))
{{ $errors->first('username') }}
@endif
{{ Form::label('apartment', 'Apartment') }} {{ Form::text('apartment', null, ['placeholder' => 'Apartment', 'class' => 'form-control', 'required']) }} @if ($errors->has('apartment'))
{{ $errors->first('apartment') }}
@endif
{{ Form::submit('Create Tenant', ['class' => 'btn btn-primary']) }}
{{ Form::close() }}
@stop