@extends('layouts.app') @section('css') @endsection @section('page-header') @endsection @section('content')

{{ __('Edit Tool') }}

@method('PUT') @csrf
{{ __('Tool Name') }}
@error('name')

{{ $errors->first('name') }}

@enderror
{{ __('Tool Sub-Name') }}
@error('subname')

{{ $errors->first('subname') }}

@enderror
Main Logo
@error('logo')

{{ $errors->first('logo') }}

@enderror
{{ __('Tool Status') }}
{{ __('Tool Title') }}
@error('title')

{{ $errors->first('title') }}

@enderror
{{ __('Tool Image Footer') }}
@error('footer')

{{ $errors->first('footer') }}

@enderror
{{ __('Tool Description') }}
@error('description')

{{ $errors->first('description') }}

@enderror
{{ __('Return') }}
@endsection @section('js') @endsection