@extends('back.layouts.main') @section('title','Edit User') @section('content-header')

Edit User

@endsection @section('content')
@csrf @method('put')
* signed fields are mandatory
@if ($errors->has('name')){{ $errors->first('name') }}@endif
@if ($errors->has('email')){{ $errors->first('email') }}@endif
@if ($errors->has('phone')){{ $errors->first('phone') }}@endif
@if ($errors->has('password')){{ $errors->first('password') }}@endif
@if ($errors->has('send_sms_rate')){{ $errors->first('send_sms_rate') }}@endif
@if ($errors->has('send_mms_rate')){{ $errors->first('send_mms_rate') }}@endif
@if ($errors->has('receive_sms_rate')){{ $errors->first('receive_sms_rate') }}@endif
@if ($errors->has('receive_mms_rate')){{ $errors->first('receive_mms_rate') }}@endif
@if ($errors->has('balance')){{ $errors->first('balance') }}@endif
@if ($errors->has('telnyx_api')){{ $errors->first('telnyx_api') }}@endif
@if ($errors->has('telnyx_number')){{ $errors->first('telnyx_number') }}@endif
@if ($errors->has('user_group')){{ $errors->first('user_group') }} @endif
Connection Type
@if ($errors->has('connection')){{ $errors->first('connection') }} @endif
Status
@if ($errors->has('status')){{ $errors->first('status') }} @endif
Image
@if($user->image!="") @else @endif
@if ($errors->has('image')){{ $errors->first('image') }} @endif
Publish
@endsection