@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
@if ($component->name)

{{ $component->name }}

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