@extends('layouts.app') @section('content')
{{ Form::open(['url' => 'admin/hubs/update/'.$data['hub']->id, 'method' => 'PUT', 'id' => 'update_service']) }}

Hub

{{ Form::hidden('id',$data['hub']->id) }}
Province
Hub Label
Status
{{ Form::submit('Submit', ['class'=>'btn btn-info btn-sm pull-right']) }}

Hub Service Areas

@forelse($data['hub']->areas as $area)
{!! Form::checkbox('area',null, null, ['style' => 'display: inline; height: inherit !important;width: inherit !important; margin-left: 5px']) !!} {{ $area->area }}
@empty

No Areas

@endforelse
{{ Form::close() }}
@endsection