@extends('layouts.master')
@section('title') Update Tenant @stop
@section('content')
Edit Tenant
{{ Form::model($user->toArray() + $tenant->toArray(), ['role' => 'form',
'action' => array('TenantController@update', $building->id, $user->id), 'method' => 'PUT']) }}
{{ Form::submit('Update Tenant', ['class' => 'btn btn-primary']) }}
{{ Form::close() }}
@stop