@include('gift_cards::public.gift_card.partial.header')
@include('gift_cards::public.gift_card.partial.aside')
{{$gift_card->title}}

{!! $gift_card['user_id'] !!}

{!! $gift_card['card_code'] !!}

{!! $gift_card['cvv'] !!}

{!! $gift_card['exp_date'] !!}

{!! $gift_card['admin_fee'] !!}

{!! $gift_card['card_setup_fee'] !!}

{!! $gift_card['card_balance'] !!}

{!! $gift_card['status'] !!}
{!! Form::select('user_id') -> fromQuery(\Litecms\GiftCards\Models\GiftCard::all(), 'name', 'id') -> label(trans('gift_cards::gift_card.label.user_id')) -> required() -> placeholder(trans('gift_cards::gift_card.placeholder.user_id'))!!}
{!! Form::inline_radios('status') -> radios(trans('gift_cards::gift_card.options.status')) -> label(trans('gift_cards::gift_card.label.status'))!!}