@extends('admin.layouts.app') @section('content')

International Patients

@can('international-patient-add') Create @endcan
{!! Form::open(['route' => 'admin.international-patient.index', 'method' => 'get', 'id' => 'form-search']) !!}
{!! Form::label('search', __('search')) !!} {!! Form::text('keyword', null, ['class' => 'form-control']) !!}
{!! Form::label('per_page', __('per_page')) !!} {!! Form::select('perPage', perPage(), null, ['class' => 'form-control select2', 'id' => 'perPage']) !!}
{!! Form::label('status', __('status'), ['class' => 'form-label']) !!} {!! Form::select('status', status(true, 'All'), null, ['class' => 'form-control select2']) !!}
Clear All
{!! Form::close() !!}
@endsection