@extends('adminlte::page') @section('title', 'Edit Product Type - MobileSentrix Admin') @section('content_header')

Edit Product Type: {{ $productType->name }}

@stop @section('content')
@csrf @method('PUT')

Product Type Information

@error('name') {{ $message }} @enderror
@error('slug') {{ $message }} @enderror
@error('description') {{ $message }} @enderror

Status & Image

is_active) ? 'checked' : '' }}>
@if($productType->image)

{{ $productType->name }}
@endif
@error('image') {{ $message }} @enderror
Leave empty to keep current image
Cancel
@stop @section('js') @stop