{!! Form::model($house, ['method' => 'PATCH','route' => ['academic.house.update', $house->id]]) !!}
{{ csrf_field() }}
@method('PUT')
{!! Form::close() !!}
{!! Form::text('name', NULL, array('id' => 'name','required', 'class' => 'form-control', 'placeholder' => trans('Name'))) !!}
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
{!! Form::textarea('description', NULL, array('rows' => '5','id' => 'description', 'required', 'class' => 'form-control', 'placeholder' => trans('Description'))) !!}
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
{!! Form::select('status',status(), old('status'), array('id' => 'status', 'class' => 'form-control', 'placeholder' => trans('Choose'))) !!}
@if ($errors->has('status'))
{{ $errors->first('status') }}
@endif