@extends('layouts.master') @section('title') @parent | Provider Search Audit Settings @stop @section('content')

Provider Search Audit Settings

{{ Form::open(array('url' => 'audit/update')) }}
{{ Form::label('audit_date', 'Search Date') }}
{{ Form::text('audit_date_formatted', date('n/j/Y', strtotime($audit_date)), ['id' => 'audit_date_formatted', 'autocomplete' => 'off']) }} {{ Form::hidden('audit_date', $audit_date, ['autocomplete' => 'off']) }}
{{ Form::label('tpa_id', 'TPA ID') }}
{{ Form::select('tpa_id', $tpa_ids, $tpa_id, ['autocomplete' => 'off']) }}
{{ Form::label('client_id', 'Client ID') }}
{{ Form::select('client_id', $client_ids, $client_id, ['autocomplete' => 'off']) }}
{{ Form::label('region_id', 'Region(s)') }}
{{ Form::select('region_id[]', $regions_options, $regions, ['multiple' => 'multiple', 'id' => 'region_id', 'autocomplete' => 'off' ]) }}
{{ Form::submit('Submit', ['id' => 'audit_submit']) }} {{ Form::close() }}
@stop