@extends('cms.layouts.main') @section('content') @include('cms.layouts.headers.partials', ['title' => 'Edit Record'])

{{ $page_info['title'] }}

@include('cms.components.alert', ['with' => 'status', 'class' => 'success'])
@csrf @method('put') {{-- Draw Number --}} @include('cms.components.inputs.number', ['label' => 'Draw Number', 'asterix' => true, 'name' => 'draw_number']) {{-- Date --}} @include('cms.components.inputs.text', ['type' => 'datetime-local', 'label' => 'Date', 'asterix' => true, 'name' => 'date', 'value' => str_replace(' ', 'T', $row->date)])
@include('cms.layouts.footers.auth')
@endsection