@extends("layouts.admin.app") @section("page-title") {{__("Dashboard")}} @endSection @section("page-nav-title")
{{__('Items Points')}}
{{__('Add New Items Points')}}
{{__('Items')}}
{{__('Points')}}
@endsection @section("content") @include("includes.dialog")
{{__('Add New Points')}}
@csrf
{{__('Items')}}
{{__("select one")}}
@foreach($items as $item)
{{$item->getNameAttribute()}}
@endforeach
@error("item_id")
{{$message}}
@enderror
{{__('gain-points')}}
@error("item_points")
{{$message}}
@enderror
{{__('replacement-points')}}
@error("replacement_points")
{{$message}}
@enderror
@endsection @section("scripts") @endsection