my-idlers/resources/views/misc/edit.blade.php
2022-03-06 02:29:58 +11:00

79 lines
3.6 KiB
PHP

@section('title') {{$misc[0]->name}} {{'edit'}} @endsection
<x-app-layout>
<x-slot name="header">
Edit {{ $misc[0]->name }}
</x-slot>
<div class="container">
<x-card class="shadow mt-3">
<h4 class="mb-3">Service information</h4>
<x-back-button>
<x-slot name="href">{{ route('misc.index') }}</x-slot>
Go back
</x-back-button>
<x-errors-alert></x-errors-alert>
<form action="{{ route('misc.update', $misc[0]->service_id) }}" method="POST">
@csrf
@method('PUT')
<div class="row">
<div class="col-12 col-lg-4 mb-4">
<div class="input-group">
<div class="input-group-prepend"><span class="input-group-text">Name</span></div>
<input type="text"
class="form-control"
name="name" required maxlength="255" value="{{$misc[0]->name}}">
@error('name') <span class="text-red-500">{{ $message }}
</span>@enderror
</div>
</div>
<div class="col-md-3 mb-3">
<x-number-input>
<x-slot name="title">Price</x-slot>
<x-slot name="name">price</x-slot>
<x-slot name="step">0.01</x-slot>
<x-slot name="value">{{ $misc[0]->price }}</x-slot>
</x-number-input>
</div>
<div class="col-md-3 mb-3">
<x-term-select>
<x-slot name="current">{{$misc[0]->term}}</x-slot>
</x-term-select>
</div>
<div class="col-md-2 mb-3">
<x-currency-select>
<x-slot name="current">{{$misc[0]->currency}}</x-slot>
</x-currency-select>
</div>
</div>
<div class="row mb-2">
<div class="col-12 col-md-4 mb-3">
<x-date-input>
<x-slot name="title">Owned since</x-slot>
<x-slot name="name">owned_since</x-slot>
<x-slot name="value">{{$misc[0]->owned_since }}</x-slot>
</x-date-input>
</div>
<div class="col-12 col-md-4 mb-3">
<x-date-input>
<x-slot name="title">Next due date</x-slot>
<x-slot name="name">next_due_date</x-slot>
<x-slot name="value">{{$misc[0]->next_due_date}}</x-slot>
</x-date-input>
</div>
</div>
<div class="form-check mt-2">
<input class="form-check-input" name="is_active" type="checkbox"
value="1" {{ ($misc[0]->active === 1) ? 'checked' : '' }}>
<label class="form-check-label">
I still have this service
</label>
</div>
<div class="row">
<div class="col-12 col-lg-4">
<x-submit-button>Update misc service</x-submit-button>
</div>
</div>
</form>
</x-card>
</div>
</x-app-layout>