@extends('admin.layout.master') @section('content')

Update Seller

@csrf @method('put')
First Name
@if ($errors->has('fname'))
{{ $errors->first('fname') }}
@endif
Last Name
@if ($errors->has('lname'))
{{ $errors->first('lname') }}
@endif
Email
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
Status
@if ($errors->has('status'))
{{ $errors->first('status') }}
@endif
@endsection