@include('includes/notifications')
{!! Form::open(array('route' => ['users.storebranch', $user->id],'class' => 'form-horizontal form-label-left')) !!}

Branch Lists

Cancel
@if($branches->count() > 0) @foreach($branches as $branch) @endforeach @else @endif
Company Name Branch Name
{{ Form::checkbox('branch[]', $branch->id, (in_array($branch->id, $selected_branch) ? true : false), ['class' => 'branch']) }} {{ $branch->company->company }} {{ $branch->branch }}
No record found
{!! Form::close() !!}