@extends('admin.master') @section('title', __('Create transaction')) @section('content') @if(session('user_not_found'))
{{ session('user_not_found') }}
@endif
@csrf
{{ __('Cancel') }} @if(strtolower(request()->for ?? 'default') === 'default') {{ __('Switch to subscriptions') }} @else {{ __('Switch to default') }} @endif
@if($errors->any()) @foreach ($errors->all() as $error)
{{ $error }}
@endforeach @endif
@if(!request()->for)
@else
@endif
@if(strtolower(request()->for) === 'subscriptions') @endif
@endsection