@extends('layouts.app') @section('title','Add New Bucket') @section('pages')
Bucket

@csrf
@if ($errors->has('user_id')) {{ $errors->first('user_id') }} @endif
@if ($errors->has('bucket_name')) {{ $errors->first('bucket_name') }} @endif
@if ($errors->has('root_folder')) {{ $errors->first('root_folder') }} @endif
@if ($errors->has('access_key')) {{ $errors->first('access_key') }} @endif
@if ($errors->has('secret_key')) {{ $errors->first('secret_key') }} @endif
Example invalid form file
Example invalid form file
@endsection