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

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

{!! Form::open(array('url' => url('follow_up/store'), '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,null, 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,null, 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,null, 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,null, array('class' => 'form-control select2','required'=>'required','placeholder'=>'')) !!}
{!! Form::label('notes',trans_choice('general.description',1),array('class'=>'')) !!} {!! Form::textarea('notes',null, array('class' => 'form-control')) !!}
{!! Form::close() !!}
@endsection @section('footer-scripts') @endsection