@extends('layouts.app') @section('content')

Create Merchant

@csrf

Create Merchant

@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('merchant_code')) {{ $errors->first('merchant_code') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
@if ($errors->has('contact_name')) {{ $errors->first('contact_name') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @else Password must be more than 8 characters long, should contain at least 1 Uppercase, 1 Lowercase, 1 Numeric and 1 special character. @endif
@if ($errors->has('logo')) {{ $errors->first('logo') }} @endif

@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@if ($errors->has('city')) {{ $errors->first('city') }} @endif
@if ($errors->has('state')) {{ $errors->first('state') }} @endif
@if ($errors->has('zip')) {{ $errors->first('zip') }} @endif
@if ($errors->has('country')) {{ $errors->first('country') }} @endif

@if ($errors->has('enabled')) {{ $errors->first('enabled') }} @endif
@endsection