@extends('admin.layouts.master') @section('page-title', 'Edit User') @section('subheader')
Edit User
@endsection @section('content')
@include('admin.layouts.flash_messages')

Edit Client

@csrf @method('PUT')
@if( $errors->has('name')) {{ $errors->first('name') }} @endif
@if( $errors->has('company')) {{ $errors->first('company') }} @endif
@if( $errors->has('email')) {{ $errors->first('email') }} @endif
@if( $errors->has('password')) {{ $errors->first('password') }} @endif
@if($errors->has('package')) {{ $errors->first('package') }} @endif
@if($errors->has('campaign_id')) {{ $errors->first('campaign_id') }} @endif
@if($errors->has('twilio_number')) {{ $errors->first('twilio_number') }} @endif
@if( $errors->has('status')) {{ $errors->first('status') }} @endif
@endsection