@extends('layouts.main') @section('title', 'Edit Data Source - ' . $dataSource->title) @section('content')

Edit Data Source

{{ $dataSource->title }}
@if(session('error')) @endif
@csrf @method('PUT')
@error('title')
{{ $message }}
@enderror
status) == '1' ? 'checked' : '' }} required>
status) == '0' ? 'checked' : '' }}>
@error('status')
{{ $message }}
@enderror
@if($dataSource->icon_url)
{{ $dataSource->title }}
{{ $dataSource->icon->original_name ?? 'Icon' }}
@endif
Upload an icon (JPEG, PNG, JPG, GIF, SVG, WEBP). Max size: 2MB
@error('icon')
{{ $message }}
@enderror
Cancel
@endsection @section('scripts') @endsection