@extends('backend.master') @section('content') @php $optCsv = $row->loan_options ? implode(',', $row->loan_options) : ''; $perCsv = $row->loan_periods ? implode(',', $row->loan_periods) : ''; @endphp
Edit Loan Setting
@csrf @method('PUT') @if ($errors->any())
    @foreach ($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif
Back
@endsection