@extends('layouts.app') @section('title', __('cash_register.open_cash_register')) @section('content')

@lang('cash_register.open_cash_register')

@if ($cash == 0) {!! Form::open(['url' => action('CashRegisterController@store'), 'method' => 'post', 'id' => 'add_cash_register_form' ]) !!}
{!! Form::hidden('location_id', $default_location, ['id' => 'location_id']); !!}
{!! Form::label('amount', __('cash_register.cash_in_hand') . ':') !!} {!! Form::text('amount', null, ['class' => 'form-control input_number', 'placeholder' => __('cash_register.enter_amount')]); !!}
{!! Form::close() !!} @else {!! Form::open(['url' => action('CashRegisterController@store'), 'method' => 'post', 'id' => 'add_cash_register_form' ]) !!}
{!! Form::hidden('location_id', $default_location, ['id' => 'location_id']); !!} {!! Form::hidden('amount', $openAmount, ['class' => 'form-control', ]); !!}
{!! Form::label('amount','Opening Balance:') !!} {!! Form::text('ammount', $openAmount, ['class' => 'form-control input_number', 'disabled']); !!}
{!! Form::close() !!} @endif
@endsection