@extends('layouts.master') @section('title') {{trans_choice('general.edit',1)}} {{trans_choice('general.follow_up',1)}} @endsection @section('content')

{{trans_choice('general.edit',1)}} {{trans_choice('general.follow_up',1)}}

{{$follow_up->user_id}}
{!! Form::open(array('url' => url('follow_up/'.$follow_up->id.'/update'), 'method' => 'post','class'=>'', 'name' => 'form',"enctype"=>"multipart/form-data")) !!}
{!! Form::label('branch_id',trans_choice('general.branch',1),array('class'=>' control-label')) !!} {!! Form::select('branch_id',$branches,$follow_up->member_id, array('class' => 'form-control select2','placeholder'=>'','required'=>'required','id'=>'contribution_batch_id')) !!}
{!! Form::label('member_id',trans_choice('general.member',1),array('class'=>' control-label')) !!} {!! Form::select('member_id',$members,$follow_up->member_id, array('class' => 'form-control select2','required'=>'required','placeholder'=>'')) !!}
{!! Form::label('follow_up_category_id',trans_choice('general.category',1),array('class'=>' control-label')) !!} {!! Form::select('follow_up_category_id',$categories,$follow_up->follow_up_category_id, array('class' => 'form-control select2','required'=>'required','placeholder'=>'')) !!}
{!! Form::label('assigned_to_id',trans_choice('general.assigned_to',1),array('class'=>' control-label')) !!} {!! Form::select('assigned_to_id',$users,$follow_up->assigned_to_id, array('class' => 'form-control select2','required'=>'required','placeholder'=>'')) !!}
{!! Form::label('due_date',trans_choice('general.due',1).' '.trans_choice('general.date',1),array('class'=>'')) !!} {!! Form::text('due_date',$follow_up->due_date, array('class' => 'form-control','required'=>'required')) !!}
{!! Form::label('notes',trans_choice('general.description',1),array('class'=>'')) !!} {!! Form::textarea('notes',$follow_up->notes, array('class' => 'form-control')) !!}
{!! Form::close() !!}
@endsection @section('footer-scripts') @endsection