@extends('layouts/contentLayoutMaster') @section('title', 'Edit User') @section('vendor-style') {{-- Page Css files --}} @endsection @section('page-style') {{-- Page Css files --}} @endsection @section('content')
{{ csrf_field() }}
vendor_id != NULL ? 'checked="checked"' : '' }} id="myCheck" onclick="myFunction()">
@if($errors->has('first_name'))

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

@endif
@if($errors->has('middle_name'))

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

@endif
@if($errors->has('last_name'))

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

@endif
@if($errors->has('email'))

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

@endif
@if($errors->has('country_code'))

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

@endif
@if($errors->has('mobile'))

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

@endif
@if($errors->has('password'))

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

@endif
@endsection @section('vendor-script') {{-- Vendor js files --}} @endsection @section('page-script') {{-- Page js files --}} @endsection