@extends('dashboard.layouts.app') @section('title', __('dashboard.Suppliers') . ' | ' . __('dashboard.Edit Supplier')) @section('page_heading', __('dashboard.Edit Supplier')) @section('breadcrumb') @endsection @section('actions') {{ __('dashboard.View All Suppliers') }} {{ __('dashboard.Add New Supplier') }} @endsection @section('content')

{{ __('dashboard.Edit Supplier') }}

@csrf @method('PATCH')
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
@error('phone')
{{ $message }}
@enderror
@error('address')
{{ $message }}
@enderror
@error('password')
{{ $message }}
@enderror {{ __('dashboard.Leave blank if you do not want to change the password.') }}
@error('password_confirmation')
{{ $message }}
@enderror
is_visible_supplier ? 'checked="checked"' : '' }} />
{{ __('dashboard.Cancel') }}
@endsection @section('scripts') @endsection