@extends('layouts.main') @section('title') {{ __('Crear Recaudos') }} @endsection @section('page-title')

@yield('title')

@endsection @section('content') {!! Form::open(['route' => 'collections.store', 'data-parsley-validate', 'id' => 'myForm']) !!}

{{ Form::label('property_id', __('Propiedad'), ['class' => 'form-label col-12 ']) }} {{ Form::text('property_id', '', [ 'class' => 'form-control ', 'placeholder' => 'Ingresa id de la propiedad', 'required' => 'true', 'id' => 'property', ]) }}
{{ Form::label('approval_id', __('Aprobacion'), ['class' => 'form-label col-12 ']) }} {{ Form::text('approval_id', '', [ 'class' => 'form-control ', 'placeholder' => 'Ingresa id de la aprobacion', 'required' => 'true', 'id' => 'approval', ]) }}
{{ Form::label('customer_phone', __('Numero de telefono del cliente'), ['class' => 'form-label col-12 ']) }} {{ Form::text('customer_phone', '', [ 'class' => 'form-control ', 'placeholder' => 'Ingresa el numero de telefono del cliente', 'required' => 'true', 'id' => 'customer_phone', ]) }}

Documentos para verificar

{{ Form::label('collection1', __('Cédula de identidad'), ['class' => 'form-label col-12']) }} {{ Form::checkbox('collection1', 1, false, ['class' => 'form-check-input']) }}
{{ Form::label('collection2', __('Rif'), ['class' => 'form-label col-12']) }} {{ Form::checkbox('collection2', 1, false, ['class' => 'form-check-input']) }}
{{ Form::label('collection3', __('Referencia de trabajo'), ['class' => 'form-label col-12']) }} {{ Form::checkbox('collection3', 1, false, ['class' => 'form-check-input']) }}
{{ Form::label('collection4', __('Referencia bancaria'), ['class' => 'form-label col-12']) }} {{ Form::checkbox('collection4', 1, false, ['class' => 'form-check-input']) }}
{{ Form::label('collection5', __('Referencia personal 1'), ['class' => 'form-label col-12']) }} {{ Form::checkbox('collection5', 1, false, ['class' => 'form-check-input']) }}
{{ Form::label('collection6', __('Referencia personal 2'), ['class' => 'form-label col-12']) }} {{ Form::checkbox('collection6', 1, false, ['class' => 'form-check-input']) }}
{{ Form::label('collection7', __('Partida de nacimiento'), ['class' => 'form-label col-12']) }} {{ Form::checkbox('collection7', 1, false, ['class' => 'form-check-input']) }}

   
{!! Form::close() !!} @endsection @section('script') @endsection