@extends('layouts.template') @section('content')
@if(session('msg_success')) @endif @if(session('msg_update')) @endif @if(session('msg_delete')) @endif
{{ Form::open(['url' => 'updatehealthinfo', 'class' => 'form-horizontal', 'method' => 'post', 'files'=>true]) }}
{{ Form::label('member', 'Select Member', array('class' =>' col-sm-2 col-md-2 col-lg-2')) }}
{{ Form::label('date', 'Assessment Date', array('class' =>' col-sm-2 col-md-2 col-lg-2')) }}
{{ Form::label('targetweight', 'Target Weight', array('class' =>' col-sm-2 col-md-2 col-lg-2')) }}
{{ Form::label('Goal', 'Goal', array('class' =>' col-sm-2 col-md-2 col-lg-2')) }}
{{ Form::label('naration', 'Narration', array('class' =>' col-sm-2 col-md-2 col-lg-2')) }}

@foreach($healthcod as $value) @endforeach
SL Code Name Details
{{ $sl++ }} {{ $value->gcod }} {{ $value->gdesc }}
{{ Form::submit('Save', array('class' => 'btn btn-success btn-sm')) }}
{{ Form::close() }}

@stop