@extends('layouts.app') @section('content')

{{ __('Configurations') }}

@csrf
English
@foreach ($configurations as $k => $configuration)
@if ($configuration->field_type == 'text')
@elseif ($configuration->field_type == 'number')
@elseif($configuration->field_type == 'file')
@elseif($configuration->field_type == 'multiple')
@endif
@endforeach
العربية
@foreach ($configurations as $configuration)
@if ($configuration->field_type == 'text')
@endif
@endforeach
@endsection