@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('admin/components/general.checkout') }} @parent @stop {{-- Page content --}} @section('content')
{{ csrf_field() }}
@if ($component->id)

{{ $component->name }} ({{ $component->numRemaining() }} {{ trans('admin/components/general.remaining') }})

@endif
@include ('partials.forms.edit.asset-select', ['translated_name' => trans('general.select_asset'), 'fieldname' => 'asset_id'])
@if ($errors->first('assigned_qty'))
{!! $errors->first('assigned_qty', '') !!}
@endif
{!! $errors->first('note', '') !!}
@stop