@extends('admin/layouts/default') @section('page-header') Update Goal details @stop @section('content')

Update Goal details

Update Goal details

{!! Form::model($item, [ 'action' => ['Admin\SiteController@update', $item->id], 'method' => 'put', 'files' => true ]) !!}
{!! Form::myInput('text', 'monthly_goal', 'Monthly Goal') !!}
{!! Form::myInput('text', 'yearly_goal', 'Yearly Goal') !!}
{!! Form::close() !!}
@stop