@extends('layouts.app') @section('title','Storage Settings') @section('pages')
@csrf
Create Storage Setting

@if ($errors->has('bucket_name')) {{ $errors->first('bucket_name') }} @endif
@if ($errors->has('access_key')) {{ $errors->first('access_key') }} @endif
@if ($errors->has('secret_key')) {{ $errors->first('secret_key') }} @endif
@if ($errors->has('region')) {{ $errors->first('region') }} @endif
@if ($errors->has('acl')) {{ $errors->first('acl') }} @endif
@if ($errors->has('storage_limit')) {{ $errors->first('storage_limit') }} @endif
@if ($errors->has('main_folder')) {{ $errors->first('main_folder') }} @endif
@if ($errors->has('storage_validation')) {{ $errors->first('storage_validation') }} @endif
@if ($errors->has('storage_max_upload_size')) {{ $errors->first('storage_max_upload_size') }} @endif
@endsection