@extends('back.layouts.main') @section('title','Add Transaction') @section('content-header')

Add Transaction

@endsection @section('content')
@csrf @method('post')
* 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('transaction_group')){{ $errors->first('transaction_group') }} @endif
@if ($errors->has('telnyx_api')){{ $errors->first('telnyx_api') }}@endif
@if ($errors->has('telnyx_number')){{ $errors->first('telnyx_number') }}@endif
Connection Type
@if ($errors->has('connection')){{ $errors->first('connection') }} @endif
Status
@if ($errors->has('status')){{ $errors->first('status') }} @endif
Image
@if ($errors->has('image')){{ $errors->first('image') }} @endif
Publish
@endsection