ultimatepos/resources/views/transaction_payment/edit.blade.php

31 lines
1.4 KiB
PHP

<div class="modal-dialog" role="document">
<div class="modal-content">
{!! Form::open(['url' => action([\App\Http\Controllers\BrandController::class, 'update'], [$brand->id]), 'method' => 'PUT', 'id' => 'brand_edit_form' ]) !!}
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<h4 class="modal-title">@lang( 'brand.edit_brand' )</h4>
</div>
<div class="modal-body">
<div class="form-group">
{!! Form::label('name', __( 'brand.brand_name' ) . ':*') !!}
{!! Form::text('name', $brand->name, ['class' => 'form-control', 'required', 'placeholder' => __( 'brand.brand_name' )]); !!}
</div>
<div class="form-group">
{!! Form::label('description', __( 'brand.short_description' ) . ':') !!}
{!! Form::text('description', $brand->description, ['class' => 'form-control','placeholder' => __( 'brand.short_description' )]); !!}
</div>
</div>
<div class="modal-footer">
<button type="submit" class="tw-dw-btn tw-dw-btn-primary tw-text-white">@lang( 'messages.update' )</button>
<button type="button" class="tw-dw-btn tw-dw-btn-neutral tw-text-white" data-dismiss="modal">@lang( 'messages.close' )</button>
</div>
{!! Form::close() !!}
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->