@extends('admin.layouts.admin_app', ['header' => true, 'nav' => true, 'demo' => true]) @section('users', 'active') @section('title') User Edit @endsection @section('page-name') User Edit @endsection @section('edit_user', 'active') @section('content')
{{--
--}}
{{ __('Edit User') }}
@csrf
{!! $errors->first('full_name', '') !!}
{!! $errors->first('email', '') !!}
{!! $errors->first('plan_validity', '') !!}
{!! $errors->first('billing_address', '') !!}
{!! $errors->first('billing_city', '') !!}
{!! $errors->first('billing_state', '') !!}
{!! $errors->first('billing_zipcode', '') !!}
{!! $errors->first('billing_country', '') !!}
{!! $errors->first('phone', '') !!}
{!! $errors->first('designation', '') !!}
{!! $errors->first('company_name', '') !!}
{!! $errors->first('company_websitelink', '') !!}
{!! $errors->first('no_of_vcards', '') !!}

{{ __('Change Password') }}

{!! $errors->first('password', '') !!}
{!! $errors->first('status', '') !!}
{!! $errors->first('user_type', '') !!}
@include('admin.includes.footer')
@endsection